source: src/libcfa/Makefile.am @ c5cb6130

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 c5cb6130 was c5cb6130, checked in by Thierry Delisle <tdelisle@…>, 7 years ago

Added special automake options to invoke flags

  • Property mode set to 100644
File size: 3.0 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:54:01 2015
12## Last Modified By : Peter A. Buhr
13## Last Modified On : Fri Aug 26 12:03:37 2016
14## Update Count     : 199
15###############################################################################
16
17# create object files in directory with source files
18AUTOMAKE_OPTIONS = subdir-objects
19
20lib_LIBRARIES = libcfa.a
21
22# put into lib for now
23cfalibdir = ${libdir}
24cfalib_DATA = builtins.cf extras.cf prelude.cf
25
26# create extra forward types/declarations to reduce inclusion of library files
27extras.cf : extras.regx extras.c
28        ${AM_V_GEN}@BACKEND_CC@ @CFA_FLAGS@ -E ${srcdir}/extras.c | grep -f extras.regx > ${srcdir}/extras.cf
29
30# create forward declarations for gcc builtins
31builtins.cf : builtins.c
32        ${AM_V_GEN}if [ -e $< ] ; then \
33                @BACKEND_CC@ -E -P $^ | sed -e "/targetm/s/.*//" -e "/_Decimal/s/.*//" -e "s/void (const char \*)0();//" -e "s/\"//g" -e "s/\(__builtin_\) /\1/" > $@ ; \
34        fi
35
36builtins.c : builtins.def prototypes.awk
37        ${AM_V_GEN}if [ -e $< ] ; then \
38                @BACKEND_CC@ -E prototypes.c | awk -f prototypes.awk > $@ ; \
39        fi
40
41builtins.def :
42
43prototypes.awk :
44
45MAINTAINERCLEANFILES = builtins.cf extras.cf ${addprefix ${libdir}/,${cfalib_DATA}} ${addprefix ${libdir}/,${lib_LIBRARIES}}
46
47#--------------------------------------------------
48
49libcfa-prelude.c : ${srcdir}/prelude.cf ${srcdir}/extras.cf ${srcdir}/builtins.cf
50        ${AM_V_GEN}${abs_top_srcdir}/src/driver/cfa-cpp -l ${srcdir}/prelude.cf $@  # use src/cfa-cpp as not in lib until after install
51
52libcfa-prelude.o : libcfa-prelude.c
53         ${AM_V_GEN}@BACKEND_CC@ @CFA_FLAGS@ -c -o $@ $<
54
55EXTRA_FLAGS = \
56        -g \
57        -Wall \
58        -Wno-unused-function \
59        @CFA_FLAGS@ \
60        -I${abs_top_srcdir}/src/libcfa/libhdr \
61        # TEMPORARY: does not build with -O2
62
63CFLAGS = ${EXTRA_FLAGS} -quiet -no-include-stdhdr -XCFA -t -B${abs_top_srcdir}/src/driver
64CC = ${abs_top_srcdir}/src/driver/cfa
65
66headers = limits stdlib math iostream fstream iterator rational assert containers/vector concurrency/threads
67runtimehdrs = concurrency
68libobjs = ${headers:=.o}
69
70# extensionless header files are overridden by -o flag in default makerule => explicitly override default rule to silently do nothing
71% : %.c
72        @true
73
74concurrency/invoke.o : concurrency/invoke.c
75        $(AM_V_CC) @BACKEND_CC@ -DHAVE_CONFIG_H -I. -I../.. ${EXTRA_FLAGS} -c -o $@ $<
76
77${libobjs} : ${abs_top_srcdir}/src/driver/cfa-cpp ${cfalib_DATA} # add dependency to cfa-cpp so all libraries are rebuilt with new translator
78
79libcfa_a_SOURCES = libcfa-prelude.c ${headers:=.c} concurrency/CtxSwitch-x86_64.S concurrency/invoke.c
80
81stdhdr = ${shell echo stdhdr/*}
82
83nobase_include_HEADERS = ${headers} ${stdhdr}
84
85CLEANFILES = libcfa-prelude.c
86
87maintainer-clean-local:
88        -rm -rf ${includedir}/*
Note: See TracBrowser for help on using the repository browser.