source: src/AST/module.mk@ 2d6add4

Last change on this file since 2d6add4 was 7a780ad, checked in by Andrew Beach <ajbeach@…>, 17 months ago

Moved ast::BasicType::Kind to ast::BasicKind in its own hearder. This is more consistent with other utility enums (although we still use this as a enum class) and reduces what some files need to include. Also did a upgrade in a comment with MAX_INTEGER_TYPE, it is now part of the enum.

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