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 b8508a2 was
643a2e1,
checked in by Peter A. Buhr <pabuhr@…>, 10 years ago
|
deal with newer built
|
-
Property mode set to
100644
|
File size:
1.0 KB
|
Line | |
---|
1 | INSTALL=@INSTALL@ |
---|
2 | BACKEND_CC := @BACKEND_CC@ |
---|
3 | |
---|
4 | LIBRARIES := libcfa.a builtins.cf builtins.c |
---|
5 | |
---|
6 | all: ${LIBRARIES} |
---|
7 | |
---|
8 | install: all |
---|
9 | ${INSTALL} -d @CFA_LIBDIR@ |
---|
10 | ${INSTALL} prelude.cf @CFA_LIBDIR@ |
---|
11 | ${INSTALL} libcfa.a @CFA_LIBDIR@ |
---|
12 | |
---|
13 | # make forward declarations for gcc builtins |
---|
14 | builtins.c: Makefile builtins.def |
---|
15 | @BACKEND_CC@ -E prototypes.c | awk -f prototypes.awk > $@ |
---|
16 | |
---|
17 | builtins.cf: builtins.c |
---|
18 | @BACKEND_CC@ -E -P $^ | sed -e "/targetm/s/.*//" -e "/_Decimal/s/.*//" -e "s/void (const char \*)0();//" -e "s/\"//g" -e "s/\(__builtin_\) /\1/" > $@ |
---|
19 | ${INSTALL} builtins.cf @CFA_LIBDIR@ |
---|
20 | |
---|
21 | libcfa-prelude.c: ../translator/cfa-cpp prelude.cf builtins.cf |
---|
22 | sed -i -e "s#typedef.*ptrdiff_t.*#`@BACKEND_CC@ -E ptrdiff_t.c | grep 'typedef.*ptrdiff_t'`#" prelude.cf |
---|
23 | ../translator/cfa-cpp -l prelude.cf $@ |
---|
24 | rm -f prelude.c |
---|
25 | |
---|
26 | libcfa-prelude.o: libcfa-prelude.c |
---|
27 | ${BACKEND_CC} -c -o $@ $< |
---|
28 | |
---|
29 | libcfa.a: libcfa-prelude.o |
---|
30 | ar crs $@ $^ |
---|
31 | |
---|
32 | EXTRA_OUTPUT += libcfa-prelude.o libcfa-prelude.c |
---|
33 | |
---|
34 | # clean-up rule |
---|
35 | clean: |
---|
36 | rm -f ${LIBRARIES} ${EXTRA_OUTPUT} |
---|
37 | |
---|
38 | distclean: clean |
---|
Note: See
TracBrowser
for help on using the repository browser.