source: src/Makefile.am@ 83ab931

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr no_list persistent-indexer pthread-emulation qualifiedEnum
Last change on this file since 83ab931 was 6d6e829, checked in by Aaron Moss <a3moss@…>, 7 years ago

First compiling draft of deferred assertions (build failure)

  • Property mode set to 100644
File size: 4.1 KB
Line 
1######################## -*- Mode: Makefile-Automake -*- ######################
2##
3## Cforall Version 1.0.0 Copyright (C) 2015 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## Makefile.am --
9##
10## Author : Peter A. Buhr
11## Created On : Sun May 31 08:51:46 2015
12## Last Modified By : Andrew Beach
13## Last Modified On : Tus Jul 25 10:34:00 2017
14## Update Count : 76
15###############################################################################
16
17# create object files in directory with source files
18AUTOMAKE_OPTIONS = foreign subdir-objects
19
20SRC = main.cc \
21 MakeLibCfa.cc \
22 CompilationState.cc
23
24MAINTAINERCLEANFILES =
25MOSTLYCLEANFILES =
26
27# Is there a way to use a variable for the directory names?
28
29include CodeGen/module.mk
30include CodeTools/module.mk
31include Concurrency/module.mk
32include Common/module.mk
33include ControlStruct/module.mk
34include GenPoly/module.mk
35include InitTweak/module.mk
36include Parser/module.mk
37include ResolvExpr/module.mk
38include SymTab/module.mk
39include SynTree/module.mk
40include Tuples/module.mk
41include Validate/module.mk
42include Virtual/module.mk
43
44# put into lib for now
45cfa_cpplibdir = $(CFA_LIBDIR)
46cfa_cpplib_PROGRAMS = ../driver/cfa-cpp demangler
47___driver_cfa_cpp_SOURCES = $(SRC)
48___driver_cfa_cpp_LDADD = -ldl # yywrap
49
50AM_CXXFLAGS = @HOST_FLAGS@ -Wno-deprecated -Wall -Wextra -DDEBUG_ALL -I./Parser -I$(srcdir)/Parser -I$(srcdir)/include -DYY_NO_INPUT -O2 -g -std=c++14
51AM_LDFLAGS = @HOST_FLAGS@ -Xlinker -export-dynamic
52ARFLAGS = cr
53
54demangler_SOURCES = SymTab/demangler.cc
55
56demangler_LDADD = libdemangle.a # yywrap
57
58noinst_LIBRARIES = libdemangle.a
59libdemangle_a_SOURCES = SymTab/Demangle.cc SymTab/ManglerCommon.cc \
60 SynTree/Type.cc \
61 SynTree/VoidType.cc \
62 SynTree/BasicType.cc \
63 SynTree/PointerType.cc \
64 SynTree/ArrayType.cc \
65 SynTree/ReferenceType.cc \
66 SynTree/FunctionType.cc \
67 SynTree/ReferenceToType.cc \
68 SynTree/TupleType.cc \
69 SynTree/TypeofType.cc \
70 SynTree/AttrType.cc \
71 SynTree/VarArgsType.cc \
72 SynTree/ZeroOneType.cc \
73 SynTree/Constant.cc \
74 SynTree/Expression.cc \
75 SynTree/TupleExpr.cc \
76 SynTree/CommaExpr.cc \
77 SynTree/TypeExpr.cc \
78 SynTree/ApplicationExpr.cc \
79 SynTree/AddressExpr.cc \
80 SynTree/Statement.cc \
81 SynTree/CompoundStmt.cc \
82 SynTree/DeclStmt.cc \
83 SynTree/Declaration.cc \
84 SynTree/DeclarationWithType.cc \
85 SynTree/ObjectDecl.cc \
86 SynTree/FunctionDecl.cc \
87 SynTree/AggregateDecl.cc \
88 SynTree/NamedTypeDecl.cc \
89 SynTree/TypeDecl.cc \
90 SynTree/Initializer.cc \
91 SynTree/TypeSubstitution.cc \
92 SynTree/Attribute.cc \
93 SynTree/DeclReplacer.cc \
94 CompilationState.cc \
95 CodeGen/CodeGenerator.cc \
96 CodeGen/FixMain.cc \
97 CodeGen/GenType.cc \
98 CodeGen/OperatorTable.cc \
99 Common/Assert.cc \
100 Common/Eval.cc \
101 Common/SemanticError.cc \
102 Common/UniqueName.cc \
103 Concurrency/Keywords.cc \
104 ControlStruct/ForExprMutator.cc \
105 ControlStruct/LabelFixer.cc \
106 ControlStruct/LabelGenerator.cc \
107 ControlStruct/MLEMutator.cc \
108 ControlStruct/Mutate.cc \
109 GenPoly/GenPoly.cc \
110 GenPoly/Lvalue.cc \
111 InitTweak/GenInit.cc \
112 InitTweak/InitTweak.cc \
113 Parser/LinkageSpec.cc \
114 ResolvExpr/AdjustExprType.cc \
115 ResolvExpr/Alternative.cc \
116 ResolvExpr/AlternativeFinder.cc \
117 ResolvExpr/ExplodedActual.cc \
118 ResolvExpr/CastCost.cc \
119 ResolvExpr/CommonType.cc \
120 ResolvExpr/ConversionCost.cc \
121 ResolvExpr/CurrentObject.cc \
122 ResolvExpr/FindOpenVars.cc \
123 ResolvExpr/Occurs.cc \
124 ResolvExpr/PolyCost.cc \
125 ResolvExpr/PtrsAssignable.cc \
126 ResolvExpr/PtrsCastable.cc \
127 ResolvExpr/RenameVars.cc \
128 ResolvExpr/ResolveAssertions.cc \
129 ResolvExpr/Resolver.cc \
130 ResolvExpr/ResolveTypeof.cc \
131 ResolvExpr/SpecCost.cc \
132 ResolvExpr/TypeEnvironment.cc \
133 ResolvExpr/Unify.cc \
134 SymTab/Autogen.cc \
135 SymTab/FixFunction.cc \
136 SymTab/Indexer.cc \
137 SymTab/Mangler.cc \
138 SymTab/Validate.cc \
139 Tuples/Explode.cc \
140 Tuples/TupleAssignment.cc \
141 Tuples/TupleExpansion.cc \
142 Validate/HandleAttributes.cc
143
144MAINTAINERCLEANFILES += ${libdir}/${notdir ${cfa_cpplib_PROGRAMS}}
Note: See TracBrowser for help on using the repository browser.