Changeset 7527e63 for src/libcfa/Makefile.in
- Timestamp:
- Aug 16, 2016, 3:20:06 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 1f6d4624
- Parents:
- 950f7a7 (diff), 7880579 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/Makefile.in
r950f7a7 r7527e63 89 89 libcfa_a_AR = $(AR) $(ARFLAGS) 90 90 libcfa_a_LIBADD = 91 am__dirstamp = $(am__leading_dot)dirstamp92 91 am__objects_1 = limits.$(OBJEXT) stdlib.$(OBJEXT) math.$(OBJEXT) \ 93 92 iostream.$(OBJEXT) fstream.$(OBJEXT) iterator.$(OBJEXT) \ 94 rational.$(OBJEXT) containers/vector.$(OBJEXT)93 rational.$(OBJEXT) 95 94 am_libcfa_a_OBJECTS = libcfa-prelude.$(OBJEXT) $(am__objects_1) 96 95 libcfa_a_OBJECTS = $(am_libcfa_a_OBJECTS) … … 136 135 CFA_LIBDIR = @CFA_LIBDIR@ 137 136 CFA_PREFIX = @CFA_PREFIX@ 138 CFLAGS = -quiet - g -Wall -Wno-unused-function @CFA_FLAGS@ -B${abs_top_srcdir}/src/driver -XCFA -t # TEMPORARY: does not build with -O2137 CFLAGS = -quiet -no-include-stdhdr -g -Wall -Wno-unused-function @CFA_FLAGS@ -B${abs_top_srcdir}/src/driver -XCFA -t # TEMPORARY: does not build with -O2 139 138 CPP = @CPP@ 140 139 CPPFLAGS = @CPPFLAGS@ … … 234 233 cfalib_DATA = builtins.cf extras.cf prelude.cf 235 234 MAINTAINERCLEANFILES = builtins.cf extras.cf ${addprefix ${libdir}/,${cfalib_DATA}} ${addprefix ${libdir}/,${lib_LIBRARIES}} 236 headers = limits stdlib math iostream fstream iterator rational containers/vector235 headers = limits stdlib math iostream fstream iterator rational # containers/vector 237 236 libobjs = ${headers:=.o} 238 237 libcfa_a_SOURCES = libcfa-prelude.c ${headers:=.c} … … 304 303 clean-libLIBRARIES: 305 304 -test -z "$(lib_LIBRARIES)" || rm -f $(lib_LIBRARIES) 306 containers/$(am__dirstamp):307 @$(MKDIR_P) containers308 @: > containers/$(am__dirstamp)309 containers/$(DEPDIR)/$(am__dirstamp):310 @$(MKDIR_P) containers/$(DEPDIR)311 @: > containers/$(DEPDIR)/$(am__dirstamp)312 containers/vector.$(OBJEXT): containers/$(am__dirstamp) \313 containers/$(DEPDIR)/$(am__dirstamp)314 305 libcfa.a: $(libcfa_a_OBJECTS) $(libcfa_a_DEPENDENCIES) $(EXTRA_libcfa_a_DEPENDENCIES) 315 306 $(AM_V_at)-rm -f libcfa.a … … 319 310 mostlyclean-compile: 320 311 -rm -f *.$(OBJEXT) 321 -rm -f containers/vector.$(OBJEXT)322 312 323 313 distclean-compile: … … 332 322 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rational.Po@am__quote@ 333 323 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stdlib.Po@am__quote@ 334 @AMDEP_TRUE@@am__include@ @am__quote@containers/$(DEPDIR)/vector.Po@am__quote@335 324 336 325 .c.o: … … 505 494 -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) 506 495 -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) 507 -rm -f containers/$(DEPDIR)/$(am__dirstamp)508 -rm -f containers/$(am__dirstamp)509 496 510 497 maintainer-clean-generic: … … 517 504 518 505 distclean: distclean-am 519 -rm -rf ./$(DEPDIR) containers/$(DEPDIR)506 -rm -rf ./$(DEPDIR) 520 507 -rm -f Makefile 521 508 distclean-am: clean-am distclean-compile distclean-generic \ … … 563 550 564 551 maintainer-clean: maintainer-clean-am 565 -rm -rf ./$(DEPDIR) containers/$(DEPDIR)552 -rm -rf ./$(DEPDIR) 566 553 -rm -f Makefile 567 554 maintainer-clean-am: distclean-am maintainer-clean-generic \ … … 603 590 # create extra forward types/declarations to reduce inclusion of library files 604 591 extras.cf : extras.regx extras.c 605 $ (AM_V_GEN)@BACKEND_CC@ @CFA_FLAGS@ -E ${srcdir}/extras.c | grep -f extras.regx > ${srcdir}/extras.cf592 ${AM_V_GEN}@BACKEND_CC@ @CFA_FLAGS@ -E ${srcdir}/extras.c | grep -f extras.regx > ${srcdir}/extras.cf 606 593 607 594 # create forward declarations for gcc builtins 608 595 builtins.cf : builtins.c 609 $ (AM_V_GEN)if [ -e $< ] ; then \596 ${AM_V_GEN}if [ -e $< ] ; then \ 610 597 @BACKEND_CC@ -E -P $^ | sed -e "/targetm/s/.*//" -e "/_Decimal/s/.*//" -e "s/void (const char \*)0();//" -e "s/\"//g" -e "s/\(__builtin_\) /\1/" > $@ ; \ 611 598 fi 612 599 613 600 builtins.c : builtins.def prototypes.awk 614 $ (AM_V_GEN)if [ -e $< ] ; then \601 ${AM_V_GEN}if [ -e $< ] ; then \ 615 602 @BACKEND_CC@ -E prototypes.c | awk -f prototypes.awk > $@ ; \ 616 603 fi … … 623 610 624 611 libcfa-prelude.c : ${srcdir}/prelude.cf ${srcdir}/extras.cf ${srcdir}/builtins.cf 625 $ (AM_V_GEN)${abs_top_srcdir}/src/driver/cfa-cpp -l ${srcdir}/prelude.cf $@ # use src/cfa-cpp as not in lib until after install612 ${AM_V_GEN}${abs_top_srcdir}/src/driver/cfa-cpp -l ${srcdir}/prelude.cf $@ # use src/cfa-cpp as not in lib until after install 626 613 627 614 libcfa-prelude.o : libcfa-prelude.c 628 $ (AM_V_GEN)@BACKEND_CC@ @CFA_FLAGS@ -c -o $@ $<615 ${AM_V_GEN}@BACKEND_CC@ @CFA_FLAGS@ -c -o $@ $< 629 616 630 617 # extensionless header files are overridden by -o flag in default makerule => explicitly override default rule to silently do nothing … … 632 619 @true 633 620 634 ${libobjs} : ${abs_top_srcdir}/src/driver/cfa-cpp ${cfalib_DATA} 621 ${libobjs} : ${abs_top_srcdir}/src/driver/cfa-cpp ${cfalib_DATA} # add dependency to cfa-cpp so all libraries are rebuilt with new translator 635 622 636 623 maintainer-clean-local:
Note:
See TracChangeset
for help on using the changeset viewer.