Changeset 4aac9ff for benchmark/Makefile.in
- Timestamp:
- Feb 19, 2020, 3:37:13 PM (3 years ago)
- Branches:
- arm-eh, 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.in
r921cd82 r4aac9ff 784 784 echo "int main() { return 0; }" > ${@} 785 785 786 #.SILENT: # do not print recipe 787 .ONESHELL: # use one shell to execute recipe 786 .SILENT: # do not print recipe 788 787 .NOTPARALLEL: 789 .PHONY: compile.csv basic.csv ctxswitch.csv mutex.csv schedint.csv788 .PHONY: jenkins cleancsv 790 789 791 790 all : basic$(EXEEXT) ctxswitch$(EXEEXT) mutex$(EXEEXT) schedint$(EXEEXT) schedext$(EXEEXT) creation$(EXEEXT) … … 817 816 +make -C ${abs_top_builddir}/tools repeat 818 817 819 jenkins$(EXEEXT): 818 cleancsv: 819 rm -f compile.csv basic.csv ctxswitch.csv mutex.csv schedint.csv 820 821 jenkins$(EXEEXT): cleancsv 820 822 @DOifskipcompile@ 821 823 +make compile.csv 822 824 -+make compile.diff.csv 823 825 @DOendif@ 824 +make basic.csv825 -+make basic.diff.csv826 826 +make ctxswitch.csv 827 827 -+make ctxswitch.diff.csv … … 834 834 -cat compile.diff.csv 835 835 @DOendif@ 836 cat basic.csv837 -cat basic.diff.csv838 836 cat ctxswitch.csv 839 837 -cat ctxswitch.diff.csv … … 844 842 845 843 compile.csv: 844 echo "building $@" 846 845 echo "array,attributes,empty,expression,io,monitor,operators,typeof" > $@ 847 846 +make TIME_FORMAT='%e,' PRINT_FORMAT='' compile-array.make >> $@ … … 855 854 $(srcdir)/fixcsv.sh $@ 856 855 857 basic.csv: 858 echo "generator,coroutine,thread" > $@ 859 +make basic-cfa_generator.runquiet >> $@ && echo -n ',' >> $@ 860 +make basic-cfa_coroutine.runquiet >> $@ && echo -n ',' >> $@ 861 +make basic-cfa_thread.runquiet >> $@ 862 $(srcdir)/fixcsv.sh $@ 856 # basic.csv: 857 # echo "$@" 858 # echo "generator,coroutine,thread" > $@ 859 # +make basic-cfa_generator.runquiet >> $@ && echo -n ',' >> $@ 860 # +make basic-cfa_coroutine.runquiet >> $@ && echo -n ',' >> $@ 861 # +make basic-cfa_thread.runquiet >> $@ 862 # $(srcdir)/fixcsv.sh $@ 863 863 864 864 ctxswitch.csv: 865 echo "building $@" 865 866 echo "generator,coroutine,thread" > $@ 866 867 +make ctxswitch-cfa_generator.runquiet >> $@ && echo -n ',' >> $@ … … 870 871 871 872 mutex.csv: 873 echo "building $@" 872 874 echo "1-monitor,2-monitor" > $@ 873 875 +make mutex-cfa1.runquiet >> $@ && echo -n ',' >> $@ … … 876 878 877 879 schedint.csv: 880 echo "building $@" 878 881 echo "schedint-1,schedint-2,schedext-1,schedext-2" > $@ 879 882 +make schedint-cfa1.runquiet >> $@ && echo -n ',' >> $@
Note: See TracChangeset
for help on using the changeset viewer.