source: src/Makefile.am @ ffaedcd

ADTarm-ehast-experimentalcleanup-dtorsenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since ffaedcd was 7abee38, checked in by tdelisle <tdelisle@…>, 5 years ago

Cleaned some module.mk files and preparing for better stats in the compiler

  • Property mode set to 100644
File size: 2.1 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 : Fri Feb 15 09:44:09 2019
14## Update Count     : 97
15###############################################################################
16
17# create object files in directory with source files
18AUTOMAKE_OPTIONS = foreign subdir-objects
19ACLOCAL_AMFLAGS  = -I automake
20
21SRC = main.cc \
22      MakeLibCfa.cc \
23      CompilationState.cc
24
25SRCDEMANGLE = CompilationState.cc
26
27MAINTAINERCLEANFILES =
28MOSTLYCLEANFILES =
29
30include CodeGen/module.mk
31include CodeTools/module.mk
32include Concurrency/module.mk
33include Common/module.mk
34include ControlStruct/module.mk
35include GenPoly/module.mk
36include InitTweak/module.mk
37include Parser/module.mk
38include ResolvExpr/module.mk
39include SymTab/module.mk
40include SynTree/module.mk
41include Tuples/module.mk
42include Validate/module.mk
43include Virtual/module.mk
44
45$(addprefix $(srcdir)/, ResolvExpr/ConversionCost.cc ResolvExpr/CommonType.cc SymTab/ManglerCommon.cc) : $(srcdir)/SynTree/Type.h
46
47$(srcdir)/SynTree/Type.h : BasicTypes-gen.cc
48        ${AM_V_GEN}${CXXCOMPILE} $< -o BasicTypes-gen -Wall -Wextra
49        @./BasicTypes-gen
50        @rm BasicTypes-gen
51
52# put into lib for now
53cfa_cpplibdir = $(CFA_LIBDIR)
54cfa_cpplib_PROGRAMS = ../driver/cfa-cpp demangler
55___driver_cfa_cpp_SOURCES = $(SRC)
56___driver_cfa_cpp_LDADD = -ldl                  # yywrap
57
58AM_CXXFLAGS = @HOST_FLAGS@ -Wno-deprecated -Wall -Wextra -DDEBUG_ALL -I./Parser -I$(srcdir)/Parser -I$(srcdir)/include -DYY_NO_INPUT -O2 -g -std=c++14
59AM_LDFLAGS  = @HOST_FLAGS@ -Xlinker -export-dynamic
60ARFLAGS     = cr
61
62demangler_SOURCES = SymTab/demangler.cc
63
64demangler_LDADD = libdemangle.a -ldl                    # yywrap
65
66noinst_LIBRARIES = libdemangle.a
67libdemangle_a_SOURCES = $(SRCDEMANGLE)
68
69MAINTAINERCLEANFILES += ${libdir}/${notdir ${cfa_cpplib_PROGRAMS}}
Note: See TracBrowser for help on using the repository browser.