Changes in libcfa/Makefile.in [5887db27:448f9b2]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/Makefile.in
r5887db27 r448f9b2 11 11 ## Created On : Sat May 16 08:05:18 2015 12 12 ## Last Modified By : Peter A. Buhr 13 ## Last Modified On : Mon May 25 09:33:47201514 ## Update Count : 413 ## Last Modified On : Mon May 25 16:22:36 2015 14 ## Update Count : 9 15 15 ############################################################################### 16 16 … … 19 19 CFA_LIBDIR = @CFA_LIBDIR@ 20 20 21 LIBRARIES := libcfa.a builtins.cf21 LIBRARIES := libcfa.a 22 22 23 all : ${LIBRARIES} Makefile23 all : ${LIBRARIES} builtins.cf Makefile 24 24 25 25 install : all … … 30 30 # make forward declarations for gcc builtins 31 31 builtins.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 33 35 ${INSTALL} builtins.cf @CFA_LIBDIR@ 34 36 35 builtins.c : builtins.def 36 @BACKEND_CC@ -E prototypes.c | awk -f prototypes.awk > $@ 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 : 37 43 38 44 libcfa-prelude.c : @CFA_LIBDIR@/cfa-cpp prelude.cf builtins.cf
Note: See TracChangeset
for help on using the changeset viewer.