Changes in / [49205cf:367e082]


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/Makefile.in

    r49205cf r367e082  
    1111## Created On       : Sat May 16 08:05:18 2015
    1212## Last Modified By : Peter A. Buhr
    13 ## Last Modified On : Mon May 25 16:22:36 2015
    14 ## Update Count     : 9
     13## Last Modified On : Mon May 25 09:33:47 2015
     14## Update Count     : 4
    1515###############################################################################
    1616
     
    1919CFA_LIBDIR = @CFA_LIBDIR@
    2020
    21 LIBRARIES := libcfa.a
     21LIBRARIES := libcfa.a builtins.cf
    2222
    23 all : ${LIBRARIES} builtins.cf Makefile
     23all : ${LIBRARIES} Makefile
    2424
    2525install : all
     
    3030# make forward declarations for gcc builtins
    3131builtins.cf : builtins.c
    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
     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/" > $@
    3533        ${INSTALL} builtins.cf @CFA_LIBDIR@
    3634
    37 builtins.c : builtins.def prototypes.awk
    38         @if [ -e builtins.def ] ; then \
    39                 @BACKEND_CC@ -E prototypes.c | awk -f prototypes.awk > $@ ; \
    40         fi
    41 
    42 builtins.def :
     35builtins.c : builtins.def
     36        @BACKEND_CC@ -E prototypes.c | awk -f prototypes.awk > $@
    4337
    4438libcfa-prelude.c : @CFA_LIBDIR@/cfa-cpp prelude.cf builtins.cf
Note: See TracChangeset for help on using the changeset viewer.