source: src/AST/module.mk @ b3a0df6

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since b3a0df6 was 08ce416, checked in by Thierry Delisle <tdelisle@…>, 4 years ago

Changed configure to use new-ast by default.
Ast options no longer pushed to libcfa (that didn't make sense).
Long Run tests and benchmark no longer distributed.
Added missing source to distribution.
Added pybin to distribution.

  • Property mode set to 100644
File size: 1.7 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/TranslationUnit.hpp \
62        AST/Type.cpp \
63        AST/Type.hpp \
64        AST/TypeEnvironment.cpp \
65        AST/TypeEnvironment.hpp \
66        AST/TypeSubstitution.cpp \
67        AST/TypeSubstitution.hpp \
68        AST/Visitor.hpp
69
70SRC += $(SRC_AST)
71SRCDEMANGLE += $(SRC_AST)
Note: See TracBrowser for help on using the repository browser.