source: src/Makefile.am @ 6081e74e

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newstringwith_gc
Last change on this file since 6081e74e was 56c3935, checked in by Peter A. Buhr <pabuhr@…>, 9 years ago

redo automake third attempt

  • Property mode set to 100644
File size: 1.3 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 : Peter A. Buhr
13## Last Modified On : Sun May 31 23:49:23 2015
14## Update Count     : 11
15###############################################################################
16
17# create object files in directory with source files
18AUTOMAKE_OPTIONS = subdir-objects
19
20SRC = main.cc MakeLibCfa.cc
21LIBS =
22
23# Is there a way to use a variable for the directory names?
24include ArgTweak/module.mk
25include CodeGen/module.mk
26include Common/module.mk
27include ControlStruct/module.mk
28include Designators/module.mk
29include GenPoly/module.mk
30include InitTweak/module.mk
31include Parser/module.mk
32include ResolvExpr/module.mk
33include SymTab/module.mk
34include SynTree/module.mk
35include Tuples/module.mk
36
37# put into lib for now
38cfa_cpplibdir = ${libdir}
39cfa_cpplib_PROGRAMS = cfa-cpp
40cfa_cpp_SOURCES = ${SRC}
41# need files Common/utility.h and Parser/lex.h
42cfa_cpp_CXXFLAGS = -Wno-deprecated -Wall -DDEBUG_ALL -I${srcdir}/Common -I${srcdir}/Parser
Note: See TracBrowser for help on using the repository browser.