Changeset 2bae7307


Ignore:
Timestamp:
May 25, 2015, 3:17:01 PM (9 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
Children:
0c7a885
Parents:
5887db27
Message:

fix libcfa/Makefile.in

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/Makefile.in

    r5887db27 r2bae7307  
    1111## Created On       : Sat May 16 08:05:18 2015
    1212## Last Modified By : Peter A. Buhr
    13 ## Last Modified On : Mon May 25 09:33:47 2015
    14 ## Update Count     : 4
     13## Last Modified On : Mon May 25 15:15:00 2015
     14## Update Count     : 5
    1515###############################################################################
    1616
     
    3030# make forward declarations for gcc builtins
    3131builtins.cf : builtins.c
    32         @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        if [ -e builtins.c ] ; then \
     33                @BACKEND_CC@ -E -P $^ | sed -e "/targetm/s/.*//" -e "/_Decimal/s/.*//" -e "s/void (const char \*)0();//" -e "s/\"//g" -e "s/\(__builtin_\) /\1/" > $@ ; \
     34        fi
    3335        ${INSTALL} builtins.cf @CFA_LIBDIR@
    3436
    3537builtins.c : builtins.def
    36         @BACKEND_CC@ -E prototypes.c | awk -f prototypes.awk > $@
     38        if [ -e builtins.def ] ; then \
     39                @BACKEND_CC@ -E prototypes.c | awk -f prototypes.awk > $@ ; \
     40        fi
     41
     42builtins.def :
    3743
    3844libcfa-prelude.c : @CFA_LIBDIR@/cfa-cpp prelude.cf builtins.cf
Note: See TracChangeset for help on using the changeset viewer.