X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fsoftware%2Fhelena%2FMakefile;h=5f17bc89b9cf95b890cba71dd38bb0f6e0e65c4f;hb=658c000ee2ea2da04cf29efc0acdaf16364fbf5e;hp=9070d13c43eeb3297b3011a3a1f5703e33a13653;hpb=eadeb433386822aac6862c76ba73957c07a99098;p=helm.git diff --git a/helm/software/helena/Makefile b/helm/software/helena/Makefile index 9070d13c4..5f17bc89b 100644 --- a/helm/software/helena/Makefile +++ b/helm/software/helena/Makefile @@ -10,32 +10,98 @@ KEEP = README CLEAN = etc/log.txt etc/profile.txt -TAGS = test-si test-si-fast profile xml-si xml-si-crg +TAGS = test-si-fast test-si test \ + profile-fast profile profile-coq \ + xml-si xml-si-v3 xml xml-v3 \ + export-coq export-matita \ + matita matitac include Makefile.common -XMLDIR = $(HOME)/svn/helm-stable/www/lambda_delta +COQC = coqc -INPUT = examples/grundlagen/grundlagen.aut +MATITAC = ../../../../matita/matita/matitac.opt -test-si: $(MAIN).opt etc - @echo " HELENA -p -o -c $(INPUT)" - $(H)./$(MAIN).opt -p -o -c -S 3 -O $(XMLDIR) $(O) $(INPUT) > etc/log.txt +MATITA = ../../../../matita/matita/matita.opt + +XMLDIR = ../../www/lambdadelta + +INPUT = examples/automath/grundlagen_2.aut + +INPUTFAST = examples/automath/grundlagen_1.aut + +MA = grundlagen_2.ma +V = grundlagen_2.v + +PREAMBLE_MA = ../matita/matita.ma.templ +PREAMBLE_V = coq/grundlagen.template test-si-fast: $(MAIN).opt etc - @echo " HELENA -o -q $(INPUT)" - $(H)./$(MAIN).opt -o -q -S 1 $(O) $(INPUT) > etc/log.txt + @echo " HELENA -o -q -1 $(INPUTFAST)" + $(H)./$(MAIN).opt -T 1 -o -q -1 $(O) $(INPUTFAST) > etc/log.txt -profile: $(MAIN).opt etc - @echo " HELENA -o -q $(INPUT) (30 TIMES)" - $(H)rm etc/log.txt - $(H)for T in `seq 30`; do ./$(MAIN).opt -o -q -s 3 -S 1 $(O) $(INPUT) >> etc/log.txt; done - $(H)grep "at exit" etc/log.txt | sort | uniq > etc/profile-new.txt +test-si: $(MAIN).opt etc + @echo " HELENA -d -l -p -o $(INPUT)" + $(H)./$(MAIN).opt -T 2 -d -l -p -o $(O) $(INPUT) > etc/log.txt + +test: $(MAIN).opt etc + @echo " HELENA -d -l $(INPUT)" + $(H)./$(MAIN).opt -l -o $(INPUT) -X -T 2 -d -l $(INPUT) > etc/log.txt xml-si: $(MAIN).opt etc - @echo " HELENA -o -x -s 2 $(INPUT)" - $(H)./$(MAIN).opt -o -x -s 2 -S 1 -O $(XMLDIR) $(INPUT) > etc/log.txt + @echo " HELENA -l -o -s 1 -x $(INPUT)" + $(H)./$(MAIN).opt -O $(XMLDIR) -T 1 -l -o -s 1 -x $(INPUT) > etc/log.txt + +xml-si-v3: $(MAIN).opt etc + @echo " HELENA -l -o -s 2 -x $(INPUT)" + $(H)./$(MAIN).opt -O $(XMLDIR) -T 1 -l -o -s 2 -x $(INPUT) > etc/log.txt + +xml: $(MAIN).opt etc + @echo " HELENA -l -s 1 -x $(INPUT)" + $(H)./$(MAIN).opt -l -o $(INPUT) -X -O $(XMLDIR) -T 1 -l -s 1 -x $(INPUT) > etc/log.txt + +xml-v3: $(MAIN).opt etc + @echo " HELENA -l -s 2 -x $(INPUT)" + $(H)./$(MAIN).opt -l -o $(INPUT) -X -O $(XMLDIR) -T 1 -l -s 2 -x $(INPUT) > etc/log.txt + +export-coq coq/$(V): $(MAIN).opt etc + $(H)mkdir -p coq + @echo " HELENA -l -m V8 -o $(INPUT)" + $(H)./$(MAIN).opt -T 1 -a n -c $(PREAMBLE_V) -l -m V8 -o $(O) $(INPUT) > etc/log.txt + +export-matita matita/$(MA): $(MAIN).opt etc + @echo " HELENA -l -m MA2 -o $(INPUT)" + $(H)mkdir -p matita + $(H)./$(MAIN).opt -T 1 -a n -c $(PREAMBLE_MA) -l -m MA2 -o $(O) $(INPUT) > etc/log.txt + +profile-fast: $(MAIN).opt etc + @echo " HELENA -o -q $(INPUTFAST) (31 TIMES)" + $(H)rm -f etc/log.txt + $(H)for T in `seq 31`; do ./$(MAIN).opt -T 1 -o -q $(O) $(INPUTFAST) >> etc/log.txt; done + $(H)grep "at exit" etc/log.txt | sort | uniq > etc/profile.txt + +profile: $(MAIN).opt etc + @echo " HELENA -l -o $(INPUT) (31 TIMES)" + $(H)rm -f etc/log.txt + $(H)for _ in `seq 31`; do ./$(MAIN).opt -T 1 -l -o $(O) $(INPUT) >> etc/log.txt; done + $(H)grep "at exit" etc/log.txt | sort | uniq > etc/profile.txt + +profile-coq: $(MAIN).opt etc + @echo " COQC $(V) (31 TIMES)" + $(H)rm -f etc/log.txt + $(H)for _ in `seq 31`; do `which time` -p -a -o etc/log.txt $(COQC) coq/$(V); done + $(H)grep -h user etc/log.txt | sort | uniq > etc/profile.txt + +matita: matita/$(MA) + @echo " MATITA $(MA)" + $(H)cd matita && $(MATITA) $(MA) + +matitac: matita/$(MA) + @echo " MATITAC $(MA)" + $(H)cd matita && $(MATITAC) $(MA) -xml-si-crg: $(MAIN).opt etc - @echo " HELENA -o -x -s 1 $(INPUT)" - $(H)./$(MAIN).opt -o -x -s 1 -S 1 -O $(XMLDIR) $(INPUT) > etc/log.txt +#profile-matita: $(MAIN).opt etc +# @echo " HELENA -o $(INPUT) (1 TIMES)" +# $(H)rm -f etc/log.txt +# $(H)for T in `seq 1`; do ./$(MAIN).opt -T 1 -a n -l -m $(PREAMBLE) -o -x $(INPUT) >> etc/log.txt; done +# $(H)grep "at exit" etc/log.txt | sort | uniq > etc/profile-new.txt