Changeset fcf041c for src/libcfa/Makefile.in
- Timestamp:
- Jul 6, 2016, 1:07:00 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- a797e2b1, d9b499c
- Parents:
- ed0e67a (diff), 8986782 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/Makefile.in
red0e67a rfcf041c 602 602 # create extra forward types/declarations to reduce inclusion of library files 603 603 extras.cf : extras.regx extras.c 604 @BACKEND_CC@ -E ${srcdir}/extras.c | grep -f extras.regx > ${srcdir}/extras.cf604 $(AM_V_GEN)@BACKEND_CC@ -E ${srcdir}/extras.c | grep -f extras.regx > ${srcdir}/extras.cf 605 605 606 606 # create forward declarations for gcc builtins 607 607 builtins.cf : builtins.c 608 if [ -e $< ] ; then \608 $(AM_V_GEN)if [ -e $< ] ; then \ 609 609 @BACKEND_CC@ -E -P $^ | sed -e "/targetm/s/.*//" -e "/_Decimal/s/.*//" -e "s/void (const char \*)0();//" -e "s/\"//g" -e "s/\(__builtin_\) /\1/" > $@ ; \ 610 610 fi 611 611 612 612 builtins.c : builtins.def prototypes.awk 613 if [ -e $< ] ; then \613 $(AM_V_GEN)if [ -e $< ] ; then \ 614 614 @BACKEND_CC@ -E prototypes.c | awk -f prototypes.awk > $@ ; \ 615 615 fi … … 622 622 623 623 libcfa-prelude.c : ${srcdir}/prelude.cf ${srcdir}/extras.cf ${srcdir}/builtins.cf 624 $ {abs_top_srcdir}/src/driver/cfa-cpp -l ${srcdir}/prelude.cf $@ # use src/cfa-cpp as not in lib until after install624 $(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 625 625 626 626 libcfa-prelude.o : libcfa-prelude.c 627 @BACKEND_CC@ -c -o $@ $<627 $(AM_V_GEN)@BACKEND_CC@ -c -o $@ $< 628 628 629 629 # extensionless header files are overridden by -o flag in default makerule => explicitly override default rule to silently do nothing
Note: See TracChangeset
for help on using the changeset viewer.