Ignore:
Timestamp:
Jul 6, 2016, 10:48:58 AM (8 years ago)
Author:
Thierry Delisle <tdelisle@…>
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:
ca4a7ba
Parents:
a6151ba
Message:

Generation of extras and builtins now follow automake silent rules as desired

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/Makefile.in

    ra6151ba r205ee4e  
    601601# create extra forward types/declarations to reduce inclusion of library files
    602602extras.cf : extras.regx extras.c
    603         @BACKEND_CC@ -E ${srcdir}/extras.c | grep -f extras.regx > ${srcdir}/extras.cf
     603        $(AM_V_GEN)@BACKEND_CC@ -E ${srcdir}/extras.c | grep -f extras.regx > ${srcdir}/extras.cf
    604604
    605605# create forward declarations for gcc builtins
    606606builtins.cf : builtins.c
    607         if [ -e $< ] ; then \
     607        $(AM_V_GEN)if [ -e $< ] ; then \
    608608                @BACKEND_CC@ -E -P $^ | sed -e "/targetm/s/.*//" -e "/_Decimal/s/.*//" -e "s/void (const char \*)0();//" -e "s/\"//g" -e "s/\(__builtin_\) /\1/" > $@ ; \
    609609        fi
    610610
    611611builtins.c : builtins.def prototypes.awk
    612         if [ -e $< ] ; then \
     612        $(AM_V_GEN)if [ -e $< ] ; then \
    613613                @BACKEND_CC@ -E prototypes.c | awk -f prototypes.awk > $@ ; \
    614614        fi
Note: See TracChangeset for help on using the changeset viewer.