source: src/Makefile.am@ 00cc023

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors ctor deferred_resn demangler enum forall-pointer-decay gc_noraii jacob/cs343-translation jenkins-sandbox memory new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new string stuck-waitfor-destruct with_gc
Last change on this file since 00cc023 was 00cc023, checked in by Peter A. Buhr <pabuhr@…>, 11 years ago

redo automake first 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 08:53:24 2015
14## Update Count : 2
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
43
Note: See TracBrowser for help on using the repository browser.