- File:
-
- 1 edited
-
src/tests/preempt_longrun/Makefile.am (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/tests/preempt_longrun/Makefile.am
r7bdcac1 rd35e796 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} 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.