source: src/Validate/module.mk @ b64d0f4

Last change on this file since b64d0f4 was 59c8dff, checked in by JiadaL <j82liang@…>, 6 months ago

Draft Implementation for enum position pesudo function (posE). EnumPosExpr? is mostly irrelevant for now. It is used in development/code probing and will be removed later

  • Property mode set to 100644
File size: 1.8 KB
RevLine 
[fd2debf]1######################### -*- Mode: Makefile-Gmake -*- ########################
2##
3## Cforall Version 1.0.0 Copyright (C) 2018 University of Waterloo
4##
5## The contents of this file are covered under the licence agreement in the
6## file "LICENCE" distributed with Cforall.
7##
8## module.mk --
9##
10## Author           : Rob Schluntz
11## Created On       : Fri Jul 27 10:10:10 2018
[9939dc3]12## Last Modified By : Andrew Beach
13## Last Modified On : Tue May 17 14:59:00 2022
14## Update Count     : 3
[fd2debf]15###############################################################################
16
[ce36b55]17SRC_VALIDATE = \
[9939dc3]18        Validate/FindSpecialDecls.h
19
20SRC += $(SRC_VALIDATE) \
[a488783]21        Validate/Autogen.cpp \
22        Validate/Autogen.hpp \
[2cf3b87]23        Validate/CompoundLiteral.cpp \
24        Validate/CompoundLiteral.hpp \
[298fe57]25        Validate/EliminateTypedef.cpp \
26        Validate/EliminateTypedef.hpp \
[1931bb01]27        Validate/EnumAndPointerDecay.cpp \
28        Validate/EnumAndPointerDecay.hpp \
[83fd57d]29        Validate/FindSpecialDecls.cpp \
[298fe57]30        Validate/FixQualifiedTypes.cpp \
31        Validate/FixQualifiedTypes.hpp \
[1931bb01]32        Validate/FixReturnTypes.cpp \
33        Validate/FixReturnTypes.hpp \
[9490621]34        Validate/ForallPointerDecay.cpp \
35        Validate/ForallPointerDecay.hpp \
[4ec9513]36        Validate/GenericParameter.cpp \
37        Validate/GenericParameter.hpp \
[298fe57]38        Validate/HoistStruct.cpp \
39        Validate/HoistStruct.hpp \
[1931bb01]40        Validate/HoistTypeDecls.cpp \
41        Validate/HoistTypeDecls.hpp \
[ce36b55]42        Validate/InitializerLength.cpp \
43        Validate/InitializerLength.hpp \
44        Validate/LabelAddressFixer.cpp \
45        Validate/LabelAddressFixer.hpp \
[37b3151]46        Validate/LinkInstanceTypes.cpp \
47        Validate/LinkInstanceTypes.hpp \
[298fe57]48        Validate/NoIdSymbolTable.hpp \
[1931bb01]49        Validate/ReplaceTypedef.cpp \
50        Validate/ReplaceTypedef.hpp \
[4ec9513]51        Validate/ReturnCheck.cpp \
[1931bb01]52        Validate/ReturnCheck.hpp \
53        Validate/VerifyCtorDtorAssign.cpp \
[59c8dff]54        Validate/VerifyCtorDtorAssign.hpp \
55        Validate/ReplacePseudoFunc.cpp \
56        Validate/ReplacePseudoFunc.hpp
[ce36b55]57
58SRCDEMANGLE += $(SRC_VALIDATE)
Note: See TracBrowser for help on using the repository browser.