source: src/AST/module.mk @ 331ee52c

ADTast-experimental
Last change on this file since 331ee52c was bc899d6, checked in by Andrew Beach <ajbeach@…>, 19 months ago

Added ast::vector as a short hand and used it in one file as a test.

  • 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 : Sat Dec 14 07:29:10 2019
14## Update Count     : 3
15###############################################################################
16
17SRC_AST = \
18        AST/Attribute.cpp \
19        AST/Attribute.hpp \
20        AST/Bitfield.hpp \
21        AST/Chain.hpp \
22        AST/Convert.cpp \
23        AST/Convert.hpp \
24        AST/Copy.cpp \
25        AST/Copy.hpp \
26        AST/Create.cpp \
27        AST/Create.hpp \
28        AST/CVQualifiers.hpp \
29        AST/Decl.cpp \
30        AST/Decl.hpp \
31        AST/DeclReplacer.cpp \
32        AST/DeclReplacer.hpp \
33        AST/Expr.cpp \
34        AST/Expr.hpp \
35        AST/FunctionSpec.hpp \
36        AST/Fwd.hpp \
37        AST/GenericSubstitution.cpp \
38        AST/GenericSubstitution.hpp \
39        AST/Init.cpp \
40        AST/Init.hpp \
41        AST/Inspect.cpp \
42        AST/Inspect.hpp \
43        AST/Label.hpp \
44        AST/LinkageSpec.cpp \
45        AST/LinkageSpec.hpp \
46        AST/Node.cpp \
47        AST/Node.hpp \
48        AST/ParseNode.hpp \
49        AST/Pass.cpp \
50        AST/Pass.hpp \
51        AST/Pass.impl.hpp \
52        AST/Pass.proto.hpp \
53        AST/Print.cpp \
54        AST/Print.hpp \
55        AST/Stmt.cpp \
56        AST/Stmt.hpp \
57        AST/StorageClasses.hpp \
58        AST/SymbolTable.cpp \
59        AST/SymbolTable.hpp \
60        AST/TranslationUnit.hpp \
61        AST/Type.cpp \
62        AST/Type.hpp \
63        AST/TypeEnvironment.cpp \
64        AST/TypeEnvironment.hpp \
65        AST/TypeSubstitution.cpp \
66        AST/TypeSubstitution.hpp \
67        AST/Util.cpp \
68        AST/Util.hpp \
69        AST/Vector.hpp \
70        AST/Visitor.hpp
71
72SRC += $(SRC_AST)
73SRCDEMANGLE += $(SRC_AST)
Note: See TracBrowser for help on using the repository browser.