source: src/AST/module.mk@ 04c78215

ADT ast-experimental
Last change on this file since 04c78215 was bc899d6, checked in by Andrew Beach <ajbeach@…>, 3 years 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
RevLine 
[dccc091]1######################### -*- Mode: Makefile-Gmake -*- ########################
[172d9342]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
[07de76b]12## Last Modified By : Peter A. Buhr
13## Last Modified On : Sat Dec 14 07:29:10 2019
14## Update Count : 3
[172d9342]15###############################################################################
16
17SRC_AST = \
[dccc091]18 AST/Attribute.cpp \
[5339a87]19 AST/Attribute.hpp \
20 AST/Bitfield.hpp \
21 AST/Chain.hpp \
[dccc091]22 AST/Convert.cpp \
[5339a87]23 AST/Convert.hpp \
[3249dd8b]24 AST/Copy.cpp \
[5339a87]25 AST/Copy.hpp \
[8f1e035]26 AST/Create.cpp \
27 AST/Create.hpp \
[5339a87]28 AST/CVQualifiers.hpp \
[dccc091]29 AST/Decl.cpp \
[5339a87]30 AST/Decl.hpp \
[dccc091]31 AST/DeclReplacer.cpp \
[5339a87]32 AST/DeclReplacer.hpp \
[dccc091]33 AST/Expr.cpp \
[5339a87]34 AST/Expr.hpp \
35 AST/FunctionSpec.hpp \
36 AST/Fwd.hpp \
[0b8bf27]37 AST/GenericSubstitution.cpp \
[5339a87]38 AST/GenericSubstitution.hpp \
[dccc091]39 AST/Init.cpp \
[5339a87]40 AST/Init.hpp \
[b70abaf]41 AST/Inspect.cpp \
42 AST/Inspect.hpp \
[5339a87]43 AST/Label.hpp \
[dccc091]44 AST/LinkageSpec.cpp \
[5339a87]45 AST/LinkageSpec.hpp \
[dccc091]46 AST/Node.cpp \
[5339a87]47 AST/Node.hpp \
48 AST/ParseNode.hpp \
[b0abc8a0]49 AST/Pass.cpp \
[5339a87]50 AST/Pass.hpp \
51 AST/Pass.impl.hpp \
52 AST/Pass.proto.hpp \
[461046f]53 AST/Print.cpp \
[5339a87]54 AST/Print.hpp \
[dccc091]55 AST/Stmt.cpp \
[5339a87]56 AST/Stmt.hpp \
57 AST/StorageClasses.hpp \
[d76c588]58 AST/SymbolTable.cpp \
[5339a87]59 AST/SymbolTable.hpp \
[08ce416]60 AST/TranslationUnit.hpp \
[dccc091]61 AST/Type.cpp \
[5339a87]62 AST/Type.hpp \
[d76c588]63 AST/TypeEnvironment.cpp \
[5339a87]64 AST/TypeEnvironment.hpp \
65 AST/TypeSubstitution.cpp \
66 AST/TypeSubstitution.hpp \
[f69fac7]67 AST/Util.cpp \
68 AST/Util.hpp \
[bc899d6]69 AST/Vector.hpp \
[5339a87]70 AST/Visitor.hpp
[172d9342]71
72SRC += $(SRC_AST)
73SRCDEMANGLE += $(SRC_AST)
Note: See TracBrowser for help on using the repository browser.