source: src/AST/module.mk@ b2a11ba

ADT arm-eh ast-experimental enum forall-pointer-decay jacob/cs343-translation new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since b2a11ba was 5339a87, checked in by Thierry Delisle <tdelisle@…>, 5 years ago

Added headers to Makefile Sources (since they are supposed to be)

  • 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/AssertAcyclic.cpp \
19 AST/AssertAcyclic.hpp \
20 AST/Attribute.cpp \
21 AST/Attribute.hpp \
22 AST/Bitfield.hpp \
23 AST/Chain.hpp \
24 AST/Convert.cpp \
25 AST/Convert.hpp \
26 AST/Copy.hpp \
27 AST/CVQualifiers.hpp \
28 AST/Decl.cpp \
29 AST/Decl.hpp \
30 AST/DeclReplacer.cpp \
31 AST/DeclReplacer.hpp \
32 AST/Eval.hpp \
33 AST/Expr.cpp \
34 AST/Expr.hpp \
35 AST/ForallSubstitutionTable.cpp \
36 AST/ForallSubstitutionTable.hpp \
37 AST/ForallSubstitutor.hpp \
38 AST/FunctionSpec.hpp \
39 AST/Fwd.hpp \
40 AST/GenericSubstitution.cpp \
41 AST/GenericSubstitution.hpp \
42 AST/Init.cpp \
43 AST/Init.hpp \
44 AST/Label.hpp \
45 AST/LinkageSpec.cpp \
46 AST/LinkageSpec.hpp \
47 AST/Node.cpp \
48 AST/Node.hpp \
49 AST/ParseNode.hpp \
50 AST/Pass.cpp \
51 AST/Pass.hpp \
52 AST/Pass.impl.hpp \
53 AST/Pass.proto.hpp \
54 AST/Print.cpp \
55 AST/Print.hpp \
56 AST/Stmt.cpp \
57 AST/Stmt.hpp \
58 AST/StorageClasses.hpp \
59 AST/SymbolTable.cpp \
60 AST/SymbolTable.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/Visitor.hpp
68
69SRC += $(SRC_AST)
70SRCDEMANGLE += $(SRC_AST)
Note: See TracBrowser for help on using the repository browser.