Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/Makefile.in

    r5887db27 r448f9b2  
    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 16:22:36 2015
     14## Update Count     : 9
    1515###############################################################################
    1616
     
    1919CFA_LIBDIR = @CFA_LIBDIR@
    2020
    21 LIBRARIES := libcfa.a builtins.cf
     21LIBRARIES := libcfa.a
    2222
    23 all : ${LIBRARIES} Makefile
     23all : ${LIBRARIES} builtins.cf Makefile
    2424
    2525install : all
     
    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
    35 builtins.c : builtins.def
    36         @BACKEND_CC@ -E prototypes.c | awk -f prototypes.awk > $@
     37builtins.c : builtins.def 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.