source: src/Makefile.am @ 2ee5426

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 2ee5426 was 2ee5426, checked in by Thierry Delisle <tdelisle@…>, 7 years ago

Cfa translator now compiles with O2 by default. Also fixed some warning

  • Property mode set to 100644
File size: 1.4 KB
RevLine 
[00cc023]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##
[0ebac75]8## Makefile.am --
[00cc023]9##
10## Author           : Peter A. Buhr
11## Created On       : Sun May 31 08:51:46 2015
12## Last Modified By : Peter A. Buhr
[f849c8e]13## Last Modified On : Thu Oct 27 20:41:25 2016
14## Update Count     : 75
[00cc023]15###############################################################################
16
17# create object files in directory with source files
18AUTOMAKE_OPTIONS = subdir-objects
19
[d3b7937]20SRC = main.cc \
21      MakeLibCfa.cc
22
23MAINTAINERCLEANFILES =
[00cc023]24
25# Is there a way to use a variable for the directory names?
[d3b7937]26
[00cc023]27include CodeGen/module.mk
28include Common/module.mk
29include ControlStruct/module.mk
30include GenPoly/module.mk
31include InitTweak/module.mk
32include Parser/module.mk
33include ResolvExpr/module.mk
34include SymTab/module.mk
35include SynTree/module.mk
36include Tuples/module.mk
37
38# put into lib for now
39cfa_cpplibdir = ${libdir}
[d3b7937]40cfa_cpplib_PROGRAMS = driver/cfa-cpp
41driver_cfa_cpp_SOURCES = ${SRC}
[fb114fa1]42driver_cfa_cpp_LDADD = ${LEXLIB} -ldl                   # yywrap
[2ee5426]43driver_cfa_cpp_CXXFLAGS = -Wno-deprecated -Wall -DDEBUG_ALL -I${abs_top_srcdir}/src/include -DYY_NO_INPUT -O2
[f849c8e]44driver_cfa_cpp_LDFLAGS = -Xlinker -export-dynamic
[d3b7937]45
46MAINTAINERCLEANFILES += ${libdir}/${notdir ${cfa_cpplib_PROGRAMS}}
Note: See TracBrowser for help on using the repository browser.