]> matita.cs.unibo.it Git - helm.git/blob - helm/software/helena/Makefile
- we are moving from old (patched) management of sort inclusion
[helm.git] / helm / software / helena / Makefile
1 MAIN = helena
2
3 SRC  = src
4
5 REQUIRES = unix str helm-ng_kernel
6
7 OCAMLOPTIONS = -rectypes 
8
9 KEEP = README
10
11 CLEAN = etc/log.txt etc/profile.txt
12
13 TAGS = test-si-fast test-si test-si-matita profile xml-si-crg xml-si matita matitac 
14
15 include Makefile.common
16
17 MATITAC = ../../../../matita/matita/matitac.opt
18
19 MATITA = ../../../../matita/matita/matita.opt
20
21 XMLDIR = ../../www/lambdadelta
22
23 INPUT = examples/automath/grundlagen_2.aut
24
25 INPUTFAST = examples/automath/grundlagen_1.aut
26
27 MA = grundlagen_2.ma
28
29 PREAMBLE = ../matita/matita.ma.templ
30
31 test-si-fast: $(MAIN).opt etc
32         @echo "  HELENA -o -q $(INPUTFAST)"
33         $(H)./$(MAIN).opt -T 1 -o -q $(O) $(INPUTFAST) > etc/log.txt
34
35 test-si: $(MAIN).opt etc
36         @echo "  HELENA -d -l -p -o $(INPUT)"
37         $(H)./$(MAIN).opt -T 2 -d -l -p -o $(O) $(INPUT) > etc/log.txt
38
39 test-si-matita matita/$(MA): $(MAIN).opt etc
40         @echo "  HELENA -d -l -m -p -o $(INPUT)"
41         $(H)./$(MAIN).opt -T 2 -a n -d -l -m $(PREAMBLE) -p -o $(O) $(INPUT) > etc/log.txt
42
43 profile: $(MAIN).opt etc
44         @echo "  HELENA -o -q $(INPUTFAST) (30 TIMES)"
45         $(H)rm -f etc/log.txt
46         $(H)for T in `seq 30`; do ./$(MAIN).opt -T 1 -o -q $(O) $(INPUTFAST) >> etc/log.txt; done
47         $(H)grep "at exit" etc/log.txt | sort | uniq > etc/profile-new.txt
48
49 xml-si-crg: $(MAIN).opt etc
50         @echo "  HELENA -l -o -s 1 -x $(INPUT)"
51         $(H)./$(MAIN).opt -O $(XMLDIR) -T 1 -l -o -s 1 -x $(INPUT) > etc/log.txt
52
53 xml-si: $(MAIN).opt etc
54         @echo "  HELENA -l -o -s 2 -x $(INPUT)"
55         $(H)./$(MAIN).opt -O $(XMLDIR) -T 1 -l -o -s 2 -x $(INPUT) > etc/log.txt
56
57 matita: matita/$(MA)
58         @echo "  MATITA $(MA)"
59         $(H)cd matita && $(MATITA) $(MA)
60
61 matitac: matita/$(MA)
62         @echo "  MATITAC $(MA)"
63         $(H)cd matita && $(MATITAC) $(MA)