Changeset 66f8528 for src/tests/Makefile.am
- Timestamp:
- Dec 15, 2016, 5:16:42 PM (6 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 43385ca, f7ff3fb
- Parents:
- 5802a4f (diff), 596f987b (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/tests/Makefile.am
r5802a4f r66f8528 15 15 ############################################################################### 16 16 17 debug=yes 18 17 19 # applies to both programs 18 CFLAGS = -g -Wall -Wno-unused-function @CFA_FLAGS@ # TEMPORARY: does not build with -O2 20 EXTRA_FLAGS = 21 CFLAGS = -g -Wall -Wno-unused-function @CFA_FLAGS@ ${EXTRA_FLAGS} 19 22 CC = @CFA_BINDIR@/cfa 20 23 … … 30 33 31 34 all-tests : 32 @+python test.py --all # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program35 @+python test.py --all --debug=${debug} # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program 33 36 34 37 clean-local : … … 54 57 55 58 declarationSpecifier: declarationSpecifier.c 56 ${CC} ${CF ALGS} -CFA -XCFA -p ${<} -o ${@}59 ${CC} ${CFLAGS} -CFA -XCFA -p ${<} -o ${@} 57 60 58 61 gccExtensions : gccExtensions.c … … 63 66 64 67 memberCtors-ERR1: memberCtors.c 65 ${CC} ${CF ALGS} -DERR1 ${<} -o ${@}68 ${CC} ${CFLAGS} -DERR1 ${<} -o ${@} 66 69 67 70 completeTypeError : completeTypeError.c 68 ${CC} ${CF ALGS} -DERR1 ${<} -o ${@}71 ${CC} ${CFLAGS} -DERR1 ${<} -o ${@}
Note: See TracChangeset
for help on using the changeset viewer.