source: src/AST/module.mk@ f5212ca

Last change on this file since f5212ca was 634cb80, checked in by Peter A. Buhr <pabuhr@…>, 22 months ago

formatting

  • 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
[634cb80]13## Last Modified On : Mon Nov 20 10:58:59 2023
14## Update Count : 5
[172d9342]15###############################################################################
16
17SRC_AST = \
[dccc091]18 AST/Attribute.cpp \
[5339a87]19 AST/Attribute.hpp \
20 AST/Bitfield.hpp \
21 AST/Chain.hpp \
[3249dd8b]22 AST/Copy.cpp \
[5339a87]23 AST/Copy.hpp \
[8f1e035]24 AST/Create.cpp \
25 AST/Create.hpp \
[5339a87]26 AST/CVQualifiers.hpp \
[dccc091]27 AST/Decl.cpp \
[5339a87]28 AST/Decl.hpp \
[dccc091]29 AST/DeclReplacer.cpp \
[5339a87]30 AST/DeclReplacer.hpp \
[dccc091]31 AST/Expr.cpp \
[5339a87]32 AST/Expr.hpp \
33 AST/FunctionSpec.hpp \
34 AST/Fwd.hpp \
[0b8bf27]35 AST/GenericSubstitution.cpp \
[5339a87]36 AST/GenericSubstitution.hpp \
[dccc091]37 AST/Init.cpp \
[5339a87]38 AST/Init.hpp \
[b70abaf]39 AST/Inspect.cpp \
40 AST/Inspect.hpp \
[5339a87]41 AST/Label.hpp \
[dccc091]42 AST/LinkageSpec.cpp \
[5339a87]43 AST/LinkageSpec.hpp \
[dccc091]44 AST/Node.cpp \
[5339a87]45 AST/Node.hpp \
46 AST/ParseNode.hpp \
[b0abc8a0]47 AST/Pass.cpp \
[5339a87]48 AST/Pass.hpp \
49 AST/Pass.impl.hpp \
50 AST/Pass.proto.hpp \
[461046f]51 AST/Print.cpp \
[5339a87]52 AST/Print.hpp \
[dccc091]53 AST/Stmt.cpp \
[5339a87]54 AST/Stmt.hpp \
55 AST/StorageClasses.hpp \
[d76c588]56 AST/SymbolTable.cpp \
[5339a87]57 AST/SymbolTable.hpp \
[08ce416]58 AST/TranslationUnit.hpp \
[dccc091]59 AST/Type.cpp \
[5339a87]60 AST/Type.hpp \
[d76c588]61 AST/TypeEnvironment.cpp \
[5339a87]62 AST/TypeEnvironment.hpp \
63 AST/TypeSubstitution.cpp \
64 AST/TypeSubstitution.hpp \
[f69fac7]65 AST/Util.cpp \
66 AST/Util.hpp \
[bc899d6]67 AST/Vector.hpp \
[5339a87]68 AST/Visitor.hpp
[172d9342]69
70SRC += $(SRC_AST)
[634cb80]71
[172d9342]72SRCDEMANGLE += $(SRC_AST)
Note: See TracBrowser for help on using the repository browser.