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
|
---|
12 | ## Last Modified By : Andrew Beach
|
---|
13 | ## Last Modified On : Tue May 17 14:59:00 2022
|
---|
14 | ## Update Count : 3
|
---|
15 | ###############################################################################
|
---|
16 |
|
---|
17 | SRC_VALIDATE = \
|
---|
18 | Validate/FindSpecialDecls.hpp
|
---|
19 |
|
---|
20 | SRC += $(SRC_VALIDATE) \
|
---|
21 | Validate/Autogen.cpp \
|
---|
22 | Validate/Autogen.hpp \
|
---|
23 | Validate/CheckAssertions.cpp \
|
---|
24 | Validate/CheckAssertions.hpp \
|
---|
25 | Validate/CompoundLiteral.cpp \
|
---|
26 | Validate/CompoundLiteral.hpp \
|
---|
27 | Validate/EliminateTypedef.cpp \
|
---|
28 | Validate/EliminateTypedef.hpp \
|
---|
29 | Validate/EnumAndPointerDecay.cpp \
|
---|
30 | Validate/EnumAndPointerDecay.hpp \
|
---|
31 | Validate/FindSpecialDecls.cpp \
|
---|
32 | Validate/FixQualifiedTypes.cpp \
|
---|
33 | Validate/FixQualifiedTypes.hpp \
|
---|
34 | Validate/FixReturnTypes.cpp \
|
---|
35 | Validate/FixReturnTypes.hpp \
|
---|
36 | Validate/ForallPointerDecay.cpp \
|
---|
37 | Validate/ForallPointerDecay.hpp \
|
---|
38 | Validate/GenericParameter.cpp \
|
---|
39 | Validate/GenericParameter.hpp \
|
---|
40 | Validate/HoistStruct.cpp \
|
---|
41 | Validate/HoistStruct.hpp \
|
---|
42 | Validate/HoistTypeDecls.cpp \
|
---|
43 | Validate/HoistTypeDecls.hpp \
|
---|
44 | Validate/ImplementEnumFunc.cpp \
|
---|
45 | Validate/ImplementEnumFunc.hpp \
|
---|
46 | Validate/InitializerLength.cpp \
|
---|
47 | Validate/InitializerLength.hpp \
|
---|
48 | Validate/LabelAddressFixer.cpp \
|
---|
49 | Validate/LabelAddressFixer.hpp \
|
---|
50 | Validate/LinkInstanceTypes.cpp \
|
---|
51 | Validate/LinkInstanceTypes.hpp \
|
---|
52 | Validate/NoIdSymbolTable.hpp \
|
---|
53 | Validate/ReplaceTypedef.cpp \
|
---|
54 | Validate/ReplaceTypedef.hpp \
|
---|
55 | Validate/ReturnCheck.cpp \
|
---|
56 | Validate/ReturnCheck.hpp \
|
---|
57 | Validate/VerifyCtorDtorAssign.cpp \
|
---|
58 | Validate/VerifyCtorDtorAssign.hpp
|
---|
59 |
|
---|
60 | SRCDEMANGLE += $(SRC_VALIDATE)
|
---|