Changeset 4aac9ff for benchmark/Makefile.am
- Timestamp:
- Feb 19, 2020, 3:37:13 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 32ce9b7
- Parents:
- 921cd82
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
benchmark/Makefile.am
r921cd82 r4aac9ff 72 72 echo "int main() { return 0; }" > ${@} 73 73 74 #.SILENT: # do not print recipe 75 .ONESHELL: # use one shell to execute recipe 74 .SILENT: # do not print recipe 76 75 .NOTPARALLEL: 77 .PHONY: compile.csv basic.csv ctxswitch.csv mutex.csv schedint.csv76 .PHONY: jenkins cleancsv 78 77 79 78 ## ========================================================================================================= … … 142 141 FIX_NEW_LINES = cat $@ | tr "\n" "\t" | sed -r 's/\t,/,/' | tr "\t" "\n" > $@ 143 142 144 jenkins$(EXEEXT): 143 cleancsv: 144 rm -f compile.csv basic.csv ctxswitch.csv mutex.csv schedint.csv 145 146 jenkins$(EXEEXT): cleancsv 145 147 @DOifskipcompile@ 146 148 +make compile.csv 147 149 -+make compile.diff.csv 148 150 @DOendif@ 149 +make basic.csv150 -+make basic.diff.csv151 151 +make ctxswitch.csv 152 152 -+make ctxswitch.diff.csv … … 159 159 -cat compile.diff.csv 160 160 @DOendif@ 161 cat basic.csv162 -cat basic.diff.csv163 161 cat ctxswitch.csv 164 162 -cat ctxswitch.diff.csv … … 169 167 170 168 compile.csv: 169 echo "building $@" 171 170 echo "array,attributes,empty,expression,io,monitor,operators,typeof" > $@ 172 171 +make TIME_FORMAT='%e,' PRINT_FORMAT='' compile-array.make >> $@ … … 180 179 $(srcdir)/fixcsv.sh $@ 181 180 182 basic.csv: 183 echo "generator,coroutine,thread" > $@ 184 +make basic-cfa_generator.runquiet >> $@ && echo -n ',' >> $@ 185 +make basic-cfa_coroutine.runquiet >> $@ && echo -n ',' >> $@ 186 +make basic-cfa_thread.runquiet >> $@ 187 $(srcdir)/fixcsv.sh $@ 181 # basic.csv: 182 # echo "$@" 183 # echo "generator,coroutine,thread" > $@ 184 # +make basic-cfa_generator.runquiet >> $@ && echo -n ',' >> $@ 185 # +make basic-cfa_coroutine.runquiet >> $@ && echo -n ',' >> $@ 186 # +make basic-cfa_thread.runquiet >> $@ 187 # $(srcdir)/fixcsv.sh $@ 188 188 189 189 ctxswitch.csv: 190 echo "building $@" 190 191 echo "generator,coroutine,thread" > $@ 191 192 +make ctxswitch-cfa_generator.runquiet >> $@ && echo -n ',' >> $@ … … 195 196 196 197 mutex.csv: 198 echo "building $@" 197 199 echo "1-monitor,2-monitor" > $@ 198 200 +make mutex-cfa1.runquiet >> $@ && echo -n ',' >> $@ … … 201 203 202 204 schedint.csv: 205 echo "building $@" 203 206 echo "schedint-1,schedint-2,schedext-1,schedext-2" > $@ 204 207 +make schedint-cfa1.runquiet >> $@ && echo -n ',' >> $@
Note: See TracChangeset
for help on using the changeset viewer.