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
with_gc
Last change
on this file since 5aa708c was aa30dc0, checked in by Peter A. Buhr <pabuhr@…>, 10 years ago |
eliminate prelude build on each make
|
-
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 : Thu Jun 4 22:49:16 2015
|
---|
14 | ## Update Count : 7
|
---|
15 | ###############################################################################
|
---|
16 |
|
---|
17 | libcfa_a_SOURCES = libcfa-prelude.c
|
---|
18 | lib_LIBRARIES = libcfa.a
|
---|
19 |
|
---|
20 | # put into lib for now
|
---|
21 | cfalibdir = ${libdir}
|
---|
22 | cfalib_DATA = prelude.cf builtins.cf
|
---|
23 |
|
---|
24 | # create forward declarations for gcc builtins
|
---|
25 | ${libdir}/builtins.cf : ${libdir} ${srcdir}/builtins.cf
|
---|
26 | ${INSTALL} ${srcdir}/builtins.cf ${libdir}
|
---|
27 | sed -i -e "s#typedef.*ptrdiff_t.*#`@BACKEND_CC@ -E ${srcdir}/ptrdiff_t.c | grep 'typedef.*ptrdiff_t'`#" ${srcdir}/prelude.cf
|
---|
28 |
|
---|
29 | builtins.cf : builtins.c
|
---|
30 | @if [ -e $< ] ; then \
|
---|
31 | @BACKEND_CC@ -E -P $^ | sed -e "/targetm/s/.*//" -e "/_Decimal/s/.*//" -e "s/void (const char \*)0();//" -e "s/\"//g" -e "s/\(__builtin_\) /\1/" > $@ ; \
|
---|
32 | fi
|
---|
33 |
|
---|
34 | builtins.c : builtins.def prototypes.awk
|
---|
35 | @if [ -e $< ] ; then \
|
---|
36 | @BACKEND_CC@ -E prototypes.c | awk -f prototypes.awk > $@ ; \
|
---|
37 | fi
|
---|
38 |
|
---|
39 | builtins.def :
|
---|
40 |
|
---|
41 | prototypes.awk :
|
---|
42 |
|
---|
43 | MAINTAINERCLEANFILES = ${srcdir}/libcfa-prelude.c
|
---|
44 |
|
---|
45 | libcfa-prelude.c : ${srcdir}/prelude.cf
|
---|
46 | ${libdir}/cfa-cpp -l ${srcdir}/prelude.cf $@
|
---|
47 |
|
---|
48 | libcfa-prelude.o : libcfa-prelude.c
|
---|
49 | ${BACKEND_CC} -c -o $@ $<
|
---|
Note:
See
TracBrowser
for help on using the repository browser.