source: src/AST/module.mk

Last change on this file was 7a780ad, checked in by Andrew Beach <ajbeach@…>, 28 hours ago

Moved ast::BasicType::Kind to ast::BasicKind? in its own hearder. This is more consistent with other utility enums (although we still use this as a enum class) and reduces what some files need to include. Also did a upgrade in a comment with MAX_INTEGER_TYPE, it is now part of the enum.

  • Property mode set to 100644
File size: 1.6 KB
Line 
1######################### -*- Mode: Makefile-Gmake -*- ########################
2##
3## Cforall Version 1.0.0 Copyright (C) 2019 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           : Thierry Delisle
11## Created On       : Thu May 09 16:05:36 2019
12## Last Modified By : Peter A. Buhr
13## Last Modified On : Mon Nov 20 10:58:59 2023
14## Update Count     : 5
15###############################################################################
16
17SRC_AST = \
18        AST/Attribute.cpp \
19        AST/Attribute.hpp \
20        AST/BasicKind.hpp \
21        AST/Bitfield.hpp \
22        AST/Chain.hpp \
23        AST/Copy.cpp \
24        AST/Copy.hpp \
25        AST/Create.cpp \
26        AST/Create.hpp \
27        AST/CVQualifiers.hpp \
28        AST/Decl.cpp \
29        AST/Decl.hpp \
30        AST/DeclReplacer.cpp \
31        AST/DeclReplacer.hpp \
32        AST/Expr.cpp \
33        AST/Expr.hpp \
34        AST/FunctionSpec.hpp \
35        AST/Fwd.hpp \
36        AST/GenericSubstitution.cpp \
37        AST/GenericSubstitution.hpp \
38        AST/Init.cpp \
39        AST/Init.hpp \
40        AST/Inspect.cpp \
41        AST/Inspect.hpp \
42        AST/Label.hpp \
43        AST/LinkageSpec.cpp \
44        AST/LinkageSpec.hpp \
45        AST/Node.cpp \
46        AST/Node.hpp \
47        AST/ParseNode.hpp \
48        AST/Pass.cpp \
49        AST/Pass.hpp \
50        AST/Pass.impl.hpp \
51        AST/Pass.proto.hpp \
52        AST/Print.cpp \
53        AST/Print.hpp \
54        AST/Stmt.cpp \
55        AST/Stmt.hpp \
56        AST/StorageClasses.hpp \
57        AST/SymbolTable.cpp \
58        AST/SymbolTable.hpp \
59        AST/TranslationUnit.hpp \
60        AST/Type.cpp \
61        AST/Type.hpp \
62        AST/TypeEnvironment.cpp \
63        AST/TypeEnvironment.hpp \
64        AST/TypeSubstitution.cpp \
65        AST/TypeSubstitution.hpp \
66        AST/Util.cpp \
67        AST/Util.hpp \
68        AST/Vector.hpp \
69        AST/Visitor.hpp
70
71SRC += $(SRC_AST)
72
73SRCDEMANGLE += $(SRC_AST)
Note: See TracBrowser for help on using the repository browser.