source:
src/AST/module.mk
@
884f3f67
Last change on this file since 884f3f67 was f69fac7, checked in by , 3 years ago | |
---|---|
|
|
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 | |
17 | SRC_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/CVQualifiers.hpp \ |
27 | AST/Decl.cpp \ |
28 | AST/Decl.hpp \ |
29 | AST/DeclReplacer.cpp \ |
30 | AST/DeclReplacer.hpp \ |
31 | AST/Eval.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/Label.hpp \ |
41 | AST/LinkageSpec.cpp \ |
42 | AST/LinkageSpec.hpp \ |
43 | AST/Node.cpp \ |
44 | AST/Node.hpp \ |
45 | AST/ParseNode.hpp \ |
46 | AST/Pass.cpp \ |
47 | AST/Pass.hpp \ |
48 | AST/Pass.impl.hpp \ |
49 | AST/Pass.proto.hpp \ |
50 | AST/Print.cpp \ |
51 | AST/Print.hpp \ |
52 | AST/Stmt.cpp \ |
53 | AST/Stmt.hpp \ |
54 | AST/StorageClasses.hpp \ |
55 | AST/SymbolTable.cpp \ |
56 | AST/SymbolTable.hpp \ |
57 | AST/TranslationUnit.hpp \ |
58 | AST/Type.cpp \ |
59 | AST/Type.hpp \ |
60 | AST/TypeEnvironment.cpp \ |
61 | AST/TypeEnvironment.hpp \ |
62 | AST/TypeSubstitution.cpp \ |
63 | AST/TypeSubstitution.hpp \ |
64 | AST/Util.cpp \ |
65 | AST/Util.hpp \ |
66 | AST/Visitor.hpp |
67 | |
68 | SRC += $(SRC_AST) |
69 | SRCDEMANGLE += $(SRC_AST) |
Note: See TracBrowser
for help on using the repository browser.