MAIN = helena SRC = src REQUIRES = unix str helm-ng_kernel OCAMLOPTIONS = -rectypes KEEP = README CLEAN = etc/log.txt etc/profile.txt TAGS = test-si test-si-fast profile xml-si xml-si-crg include Makefile.common XMLDIR = ../../www/lambdadelta INPUT = examples/grundlagen/grundlagen_2.aut INPUTFAST = examples/grundlagen/grundlagen_1.aut test-si: $(MAIN).opt etc @echo " HELENA -p -o -c $(INPUT)" $(H)./$(MAIN).opt -T 2 -p -o -c -O $(XMLDIR) $(O) $(INPUT) > etc/log.txt test-si-fast: $(MAIN).opt etc @echo " HELENA -o -q $(INPUTFAST)" $(H)./$(MAIN).opt -T 1 -o -q $(O) $(INPUTFAST) > etc/log.txt profile: $(MAIN).opt etc @echo " HELENA -o -q $(INPUTFAST) (30 TIMES)" $(H)rm etc/log.txt $(H)for T in `seq 30`; do ./$(MAIN).opt -T 1 -o -q $(O) $(INPUTFAST) >> etc/log.txt; done $(H)grep "at exit" etc/log.txt | sort | uniq > etc/profile-new.txt xml-si: $(MAIN).opt etc @echo " HELENA -o -x -s 2 $(INPUT)" $(H)./$(MAIN).opt -T 1 -o -x -s 2 -O $(XMLDIR) $(INPUT) > etc/log.txt xml-si-crg: $(MAIN).opt etc @echo " HELENA -o -x -s 1 $(INPUT)" $(H)./$(MAIN).opt -T 1 -o -x -s 1 -O $(XMLDIR) $(INPUT) > etc/log.txt