source: src/AST/module.mk@ a8b87d3

ADT ast-experimental pthread-emulation qualifiedEnum
Last change on this file since a8b87d3 was e6cf857f, checked in by Andrew Beach <ajbeach@…>, 3 years ago

call -> createCall: The template wrapper has been removed and now it is beside similar helper functions.

  • 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/CVQualifiers.hpp \
27 AST/Decl.cpp \
28 AST/Decl.hpp \
29 AST/DeclReplacer.cpp \
30 AST/DeclReplacer.hpp \
31 AST/Expr.cpp \
32 AST/Expr.hpp \
33 AST/FunctionSpec.hpp \
34 AST/Fwd.hpp \
35 AST/GenericSubstitution.cpp \
36 AST/GenericSubstitution.hpp \
37 AST/Init.cpp \
38 AST/Init.hpp \
39 AST/Label.hpp \
40 AST/LinkageSpec.cpp \
41 AST/LinkageSpec.hpp \
42 AST/Node.cpp \
43 AST/Node.hpp \
44 AST/ParseNode.hpp \
45 AST/Pass.cpp \
46 AST/Pass.hpp \
47 AST/Pass.impl.hpp \
48 AST/Pass.proto.hpp \
49 AST/Print.cpp \
50 AST/Print.hpp \
51 AST/Stmt.cpp \
52 AST/Stmt.hpp \
53 AST/StorageClasses.hpp \
54 AST/SymbolTable.cpp \
55 AST/SymbolTable.hpp \
56 AST/TranslationUnit.hpp \
57 AST/Type.cpp \
58 AST/Type.hpp \
59 AST/TypeEnvironment.cpp \
60 AST/TypeEnvironment.hpp \
61 AST/TypeSubstitution.cpp \
62 AST/TypeSubstitution.hpp \
63 AST/Util.cpp \
64 AST/Util.hpp \
65 AST/Visitor.hpp
66
67SRC += $(SRC_AST)
68SRCDEMANGLE += $(SRC_AST)
Note: See TracBrowser for help on using the repository browser.