Changeset 4df85197
- Timestamp:
- Jun 1, 2016, 5:59:00 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, 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:
- 77f347d, be945ac, e24f13a
- Parents:
- 83de11e (diff), 3d1e617 (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. - Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/examples/runTests.sh
r83de11e r4df85197 36 36 make clean > /dev/null 2>&1 37 37 38 ret_val=0 39 38 40 for test in $tests; do 39 41 echo -n " $test" | tee -a $logfile … … 41 43 # build, skipping to next test on error 42 44 if ! make -j 8 $test > tests/$test.make.txt 2>&1; then 45 ret_val=1 43 46 echo -e "\tFAILED with build error:" | tee -a $logfile 44 47 cat tests/$test.make.txt | tee -a $logfile … … 50 53 ./$test < tests/$test.in.txt > tests/$test.run.txt 2>&1 51 54 if ! diff tests/$test.out.txt tests/$test.run.txt > tests/$test.diff.txt; then 55 ret_val=1 52 56 echo -e "\tFAILED with output mismatch:" | tee -a $logfile 53 57 cat tests/$test.diff.txt | tee -a $logfile … … 58 62 echo -e "\tPASSED" | tee -a $logfile 59 63 done 64 65 exit $((ret_val)) -
src/libcfa/Makefile.am
r83de11e r4df85197 11 11 ## Created On : Sun May 31 08:54:01 2015 12 12 ## Last Modified By : Peter A. Buhr 13 ## Last Modified On : Tue Apr 19 22:30:17201614 ## Update Count : 1 2413 ## Last Modified On : Tue May 31 13:24:15 2016 14 ## Update Count : 141 15 15 ############################################################################### 16 16 … … 53 53 CC = ${abs_top_srcdir}/src/driver/cfa 54 54 55 # extension-less header files are overridden by default make rules => explicitly override rule 56 % : %.c 57 true 55 headers = limits stdlib math iostream fstream iterator rational 56 .SECONDARY : ${headers} # stop implicit '.o' rules from removing extensionless headers 58 57 59 .c.o : ${abs_top_srcdir}/src/driver/cfa-cpp 60 ${CC} ${CFLAGS} -c -o $@ $< 58 libcfa_a_SOURCES = libcfa-prelude.c ${headers:=.c} 61 59 62 libs = limits stdlib math iostream fstream iterator rational 63 libcfa_a_SOURCES = libcfa-prelude.c ${libs:=.c} 64 65 cheaders = # expat 66 cfaheaders = # limits 67 include_HEADERS = ${cheaders:=.h} ${libs} ${cfaheaders} 60 include_HEADERS = ${headers} 68 61 69 62 CLEANFILES = libcfa-prelude.c -
src/libcfa/Makefile.in
r83de11e r4df85197 214 214 MAINTAINERCLEANFILES = ${addprefix ${libdir}/,${cfalib_DATA}} \ 215 215 ${addprefix ${libdir}/,${lib_LIBRARIES}} ${includedir}/* 216 libs = limits stdlib math iostream fstream iterator rational 217 libcfa_a_SOURCES = libcfa-prelude.c ${libs:=.c} 218 cheaders = # expat 219 cfaheaders = # limits 220 include_HEADERS = ${cheaders:=.h} ${libs} ${cfaheaders} 216 headers = limits stdlib math iostream fstream iterator rational 217 libcfa_a_SOURCES = libcfa-prelude.c ${headers:=.c} 218 include_HEADERS = ${headers} 221 219 CLEANFILES = libcfa-prelude.c 222 220 all: all-am … … 303 301 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rational.Po@am__quote@ 304 302 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stdlib.Po@am__quote@ 303 304 .c.o: 305 @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< 306 @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po 307 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ 308 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 309 @am__fastdepCC_FALSE@ $(COMPILE) -c $< 305 310 306 311 .c.obj: … … 582 587 libcfa-prelude.o : libcfa-prelude.c 583 588 @BACKEND_CC@ -c -o $@ $< 584 585 # extension-less header files are overridden by default make rules => explicitly override rule 586 % : %.c 587 true 588 589 .c.o : ${abs_top_srcdir}/src/driver/cfa-cpp 590 ${CC} ${CFLAGS} -c -o $@ $< 589 .SECONDARY : ${headers} # stop implicit '.o' rules from removing extensionless headers 591 590 592 591 # Tell versions [3.59,3.63) of GNU make to not export all variables.
Note: See TracChangeset
for help on using the changeset viewer.