source: src/libcfa/Makefile.am @ 27de955

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newstringwith_gc
Last change on this file since 27de955 was 6e7e2b36, checked in by Peter A. Buhr <pabuhr@…>, 9 years ago

redo automake seventh attempt

  • Property mode set to 100644
File size: 1.5 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 : Mon Jun  1 08:55:17 2015
14## Update Count     : 3
15###############################################################################
16
17libcfa_a_SOURCES = libcfa-prelude.c
18lib_LIBRARIES = libcfa.a
19
20# put into lib for now
21cfalibdir = ${libdir}
22cfalib_DATA = prelude.cf builtins.cf
23
24# create forward declarations for gcc builtins
25${libdir}/builtins.cf : ${srcdir}/builtins.cf ${libdir}
26        ${INSTALL} ${srcdir}/builtins.cf ${libdir}
27
28builtins.cf : builtins.c
29        @if [ -e $< ] ; then \
30                @BACKEND_CC@ -E -P $^ | sed -e "/targetm/s/.*//" -e "/_Decimal/s/.*//" -e "s/void (const char \*)0();//" -e "s/\"//g" -e "s/\(__builtin_\) /\1/" > $@ ; \
31        fi
32
33builtins.c : builtins.def prototypes.awk
34        @if [ -e $< ] ; then \
35                @BACKEND_CC@ -E prototypes.c | awk -f prototypes.awk > $@ ; \
36        fi
37
38builtins.def :
39
40prototypes.awk :
41
42libcfa-prelude.c : ${libdir}/cfa-cpp ${libdir}/builtins.cf
43        sed -i -e "s#typedef.*ptrdiff_t.*#`@BACKEND_CC@ -E ${srcdir}/ptrdiff_t.c | grep 'typedef.*ptrdiff_t'`#" ${srcdir}/prelude.cf
44        ${libdir}/cfa-cpp -l ${srcdir}/prelude.cf $@
45
46libcfa-prelude.o : libcfa-prelude.c
47        ${BACKEND_CC} -c -o $@ $<
Note: See TracBrowser for help on using the repository browser.