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
|
---|
18 | AUTOMAKE_OPTIONS = foreign subdir-objects
|
---|
19 | ACLOCAL_AMFLAGS = -I automake
|
---|
20 |
|
---|
21 | SRC = main.cc \
|
---|
22 | MakeLibCfa.cc \
|
---|
23 | CompilationState.cc
|
---|
24 |
|
---|
25 | SRCDEMANGLE = CompilationState.cc
|
---|
26 |
|
---|
27 | MAINTAINERCLEANFILES =
|
---|
28 | MOSTLYCLEANFILES =
|
---|
29 |
|
---|
30 | include CodeGen/module.mk
|
---|
31 | include CodeTools/module.mk
|
---|
32 | include Concurrency/module.mk
|
---|
33 | include Common/module.mk
|
---|
34 | include ControlStruct/module.mk
|
---|
35 | include GenPoly/module.mk
|
---|
36 | include InitTweak/module.mk
|
---|
37 | include Parser/module.mk
|
---|
38 | include ResolvExpr/module.mk
|
---|
39 | include SymTab/module.mk
|
---|
40 | include SynTree/module.mk
|
---|
41 | include Tuples/module.mk
|
---|
42 | include Validate/module.mk
|
---|
43 | include 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
|
---|
53 | cfa_cpplibdir = $(CFA_LIBDIR)
|
---|
54 | cfa_cpplib_PROGRAMS = ../driver/cfa-cpp demangler
|
---|
55 | ___driver_cfa_cpp_SOURCES = $(SRC)
|
---|
56 | ___driver_cfa_cpp_LDADD = -ldl # yywrap
|
---|
57 |
|
---|
58 | if WITH_LIBPROFILER
|
---|
59 | ___driver_cfa_cpp_LDADD += -lprofiler
|
---|
60 | endif
|
---|
61 |
|
---|
62 | if WITH_LIBTCMALLOC
|
---|
63 | ___driver_cfa_cpp_LDADD += -ltcmalloc
|
---|
64 | endif
|
---|
65 |
|
---|
66 | AM_CXXFLAGS = @HOST_FLAGS@ -Wno-deprecated -Wall -Wextra -DDEBUG_ALL -I./Parser -I$(srcdir)/Parser -I$(srcdir)/include -DYY_NO_INPUT -O3 -g -std=c++14
|
---|
67 | AM_LDFLAGS = @HOST_FLAGS@ -Xlinker -export-dynamic
|
---|
68 | ARFLAGS = cr
|
---|
69 |
|
---|
70 | demangler_SOURCES = SymTab/demangler.cc
|
---|
71 |
|
---|
72 | demangler_LDADD = libdemangle.a -ldl # yywrap
|
---|
73 |
|
---|
74 | noinst_LIBRARIES = libdemangle.a
|
---|
75 | libdemangle_a_SOURCES = $(SRCDEMANGLE)
|
---|
76 |
|
---|
77 | MAINTAINERCLEANFILES += ${libdir}/${notdir ${cfa_cpplib_PROGRAMS}}
|
---|