######################## -*- Mode: Makefile-Automake -*- ###################### ## ## Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo ## ## The contents of this file are covered under the licence agreement in the ## file "LICENCE" distributed with Cforall. ## ## Makefile.am -- ## ## Author : Peter A. Buhr ## Created On : Sun May 31 08:51:46 2015 ## Last Modified By : Peter A. Buhr ## Last Modified On : Sat Jun 13 08:22:14 2015 ## Update Count : 17 ############################################################################### # create object files in directory with source files AUTOMAKE_OPTIONS = subdir-objects SRC = main.cc MakeLibCfa.cc # Is there a way to use a variable for the directory names? include ArgTweak/module.mk include CodeGen/module.mk include Common/module.mk include ControlStruct/module.mk include Designators/module.mk include GenPoly/module.mk include InitTweak/module.mk include Parser/module.mk include ResolvExpr/module.mk include SymTab/module.mk include SynTree/module.mk include Tuples/module.mk # put into lib for now cfa_cpplibdir = ${libdir} cfa_cpplib_PROGRAMS = cfa-cpp cfa_cpp_SOURCES = ${SRC} # need files Common/utility.h cfa_cpp_CXXFLAGS = -Wno-deprecated -Wall -DDEBUG_ALL -I${srcdir}/Common CXXFLAGS = -g # remove default -O2 to allow better debugging