5 REQUIRES = unix str helm-ng_kernel
7 OCAMLOPTIONS = -rectypes
11 CLEAN = etc/log.txt etc/profile.txt
13 TAGS = test-si test-si-fast profile xml-si xml-si-crg
15 include Makefile.common
17 XMLDIR = $(HOME)/svn/helm-stable/www/lambda_delta
19 INPUT = examples/grundlagen/grundlagen.aut
21 test-si: $(MAIN).opt etc
22 @echo " HELENA -p -o -c $(INPUT)"
23 $(H)./$(MAIN).opt -p -o -c -S 3 -O $(XMLDIR) $(O) $(INPUT) > etc/log.txt
25 test-si-fast: $(MAIN).opt etc
26 @echo " HELENA -o -q $(INPUT)"
27 $(H)./$(MAIN).opt -o -q -S 1 $(O) $(INPUT) > etc/log.txt
29 profile: $(MAIN).opt etc
30 @echo " HELENA -o -q $(INPUT) (30 TIMES)"
32 $(H)for T in `seq 30`; do ./$(MAIN).opt -o -q -s 3 -S 1 $(O) $(INPUT) >> etc/log.txt; done
33 $(H)grep "at exit" etc/log.txt | sort | uniq > etc/profile-new.txt
35 xml-si: $(MAIN).opt etc
36 @echo " HELENA -o -x -s 2 $(INPUT)"
37 $(H)./$(MAIN).opt -o -x -s 2 -S 1 -O $(XMLDIR) $(INPUT) > etc/log.txt
39 xml-si-crg: $(MAIN).opt etc
40 @echo " HELENA -o -x -s 1 $(INPUT)"
41 $(H)./$(MAIN).opt -o -x -s 1 -S 1 -O $(XMLDIR) $(INPUT) > etc/log.txt