Changeset c653b37 for src/tests/preempt_longrun/Makefile.am
- Timestamp:
- Jun 28, 2018, 4:04:11 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- e3b2474
- Parents:
- a12c81f3 (diff), 944ce47 (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
-
src/tests/preempt_longrun/Makefile.am (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/tests/preempt_longrun/Makefile.am
ra12c81f3 rc653b37 25 25 TIME = /usr/bin/time -f "%E" 26 26 27 BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@ -O2 -DPREEMPTION_RATE=${preempt} -I.. -I. -DTEST_$(shell echo $(type) | tr a-z A-Z) 27 # $(shell ./update-type $(type)) 28 # ./update-type $(type) 29 30 UPDATED_TYPE = $(shell ./update-type $(type)) 31 32 BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@ -O2 -DPREEMPTION_RATE=${preempt} -I.. -I. -DTEST_$(shell cat .type | tr a-z A-Z) 28 33 CFLAGS = ${BUILD_FLAGS} 29 34 CC = @CFA_BINDIR@/@CFA_NAME@ … … 45 50 46 51 clean-local: 47 rm -f ${TESTS} core* out.log 52 rm -f ${TESTS} core* out.log .type 48 53 49 % : %.c ${CC} 54 % : %.c ${CC} ${UPDATED_TYPE} 50 55 ${AM_V_GEN}${CC} ${CFLAGS} ${<} $(debug) -o ${@} 51 56
Note:
See TracChangeset
for help on using the changeset viewer.