source: src/Makefile.am @ ba4a1d8

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprno_listpersistent-indexerpthread-emulationqualifiedEnum
Last change on this file since ba4a1d8 was fd2debf, checked in by Rob Schluntz <rschlunt@…>, 6 years ago

Add checks for constructor/destructor attribute arguments

  • Property mode set to 100644
File size: 1.6 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 = subdir-objects
19
20SRC = main.cc \
21      MakeLibCfa.cc \
22      CompilationState.cc
23
24MAINTAINERCLEANFILES =
25
26# Is there a way to use a variable for the directory names?
27
28include CodeGen/module.mk
29include CodeTools/module.mk
30include Concurrency/module.mk
31include Common/module.mk
32include ControlStruct/module.mk
33include GenPoly/module.mk
34include InitTweak/module.mk
35include Parser/module.mk
36include ResolvExpr/module.mk
37include SymTab/module.mk
38include SynTree/module.mk
39include Tuples/module.mk
40include Validate/module.mk
41include Virtual/module.mk
42
43# put into lib for now
44cfa_cpplibdir = ${CFA_LIBDIR}
45cfa_cpplib_PROGRAMS = driver/cfa-cpp
46driver_cfa_cpp_SOURCES = ${SRC}
47driver_cfa_cpp_LDADD = -ldl                     # yywrap
48driver_cfa_cpp_CXXFLAGS = -Wno-deprecated -Wall -Wextra -DDEBUG_ALL -I./Parser -I${abs_top_srcdir}/src/Parser -I${abs_top_srcdir}/src/include -DYY_NO_INPUT -O2 -g -std=c++14
49driver_cfa_cpp_LDFLAGS = -Xlinker -export-dynamic
50
51MAINTAINERCLEANFILES += ${libdir}/${notdir ${cfa_cpplib_PROGRAMS}}
Note: See TracBrowser for help on using the repository browser.