Changes in libcfa/src/Makefile.am [158b026:2026bb6]
- File:
-
- 1 edited
-
libcfa/src/Makefile.am (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/Makefile.am
r158b026 r2026bb6 11 11 ## Created On : Sun May 31 08:54:01 2015 12 12 ## Last Modified By : Peter A. Buhr 13 ## Last Modified On : Mon Jul 15 22:43:27 201914 ## Update Count : 24 113 ## Last Modified On : Tue Jul 24 17:25:39 2018 14 ## Update Count : 240 15 15 ############################################################################### 16 16 … … 22 22 23 23 libdir = ${CFA_LIBDIR} 24 lib_LTLIBRARIES = libcfa.la libcfathread.la24 lib_LTLIBRARIES = libcfa.la libcfathread.la 25 25 26 26 VPATH += :../prelude 27 28 gdbwaittarget=""29 27 30 28 # AM_CFLAGS for all cfa source … … 32 30 # use -no-include-stdhdr to prevent rebuild cycles 33 31 # The built sources must not depend on the installed headers 34 AM_CFAFLAGS = -quiet - cfalib -I$(srcdir)/stdhdr $(if $(findstring ${gdbwaittarget}, ${@}), -XCFA --gdb)@CONFIG_CFAFLAGS@32 AM_CFAFLAGS = -quiet -in-tree -I$(srcdir)/stdhdr @CONFIG_CFAFLAGS@ 35 33 AM_CFLAGS = -g -Wall -Wno-unused-function -fPIC @ARCH_FLAGS@ @CONFIG_CFLAGS@ 36 34 AM_CCASFLAGS = -g -Wall -Wno-unused-function @ARCH_FLAGS@ @CONFIG_CFLAGS@ … … 64 62 # add dependency of cfa files 65 63 libobjs = $(addsuffix .lo, $(basename $(filter %.cfa,$(libsrc)))) 66 $(libobjs) : @ LOCAL_CFACC@ @CFACPP@ prelude.cfa64 $(libobjs) : @CFACC@ @CFACPP@ prelude.cfa 67 65 68 66 thread_libobjs = $(addsuffix .lo, $(basename $(filter %.cfa,$(thread_libsrc)))) 69 $(thread_libobjs) : @ LOCAL_CFACC@ @CFACPP@ prelude.cfa67 $(thread_libobjs) : @CFACC@ @CFACPP@ prelude.cfa 70 68 71 69 … … 86 84 87 85 88 if ENABLE_DISTCC 86 prelude.o : prelude.cfa extras.cf gcc-builtins.cf builtins.cf @CFACC@ @CFACPP@ 87 ${AM_V_GEN}$(CFACOMPILE) -quiet -in-tree -XCFA -l ${<} -c -o ${@} 89 88 90 ../prelude/distribution: @LOCAL_CFACC@ @LOCAL_CC1@ @CFACPP@ ../prelude/gcc-builtins.cf ../prelude/builtins.cf ../prelude/extras.cf ../prelude/prelude.cfa ../prelude/bootloader.c $(srcdir)/../../tools/build/push2dist.sh 91 @+make -C ../prelude distribution 89 prelude.lo: prelude.cfa extras.cf gcc-builtins.cf builtins.cf @CFACC@ @CFACPP@ 90 ${AM_V_GEN}$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile \ 91 $(CFACOMPILE) -quiet -in-tree -XCFA -l ${<} -c -o ${@} 92 92 93 prelude.o prelude.lo $(libobjs) $(thread_libobjs) : ../prelude/distribution94 95 endif ENABLE_DISTCC96 97 prelude.o : prelude.cfa extras.cf gcc-builtins.cf builtins.cf @LOCAL_CFACC@ @CFACPP@98 ${AM_V_GEN}$(CFACOMPILE) -quiet -XCFA -l ${<} -c -o ${@}99 100 prelude.lo: prelude.cfa extras.cf gcc-builtins.cf builtins.cf @LOCAL_CFACC@ @CFACPP@101 ${AM_V_GEN}$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile \102 $(CFACOMPILE) -quiet -XCFA -l ${<} -c -o ${@}103 93 104 94 #----------------------------------------------------------------------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.