blob: d650f9571b60bcdc35864861bf84f6b61a0f501f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
OTTLIB=$(dir $(shell which ott))../hol
.PHONY: all
all: l2.pdf l2_parse.pdf l2.ml l2_parse.ml l2.lem
%.pdf: %.tex
pdflatex $<
%Theory.uo: %Script.sml
Holmake --qof -I $(OTTLIB) $@
l2.tex: l2.ott l2_rules.ott
ott -sort false -generate_aux_rules false -o $@ -picky_multiple_parses true $^
%.tex: %.ott
ott -sort false -generate_aux_rules false -o $@ -picky_multiple_parses true $^
%.ml: %.ott
ott -sort false -generate_aux_rules true -o $@ -picky_multiple_parses true $^
%Script.sml: %.ott
ott -sort false -generate_aux_rules true -o $@ -picky_multiple_parses true $^
%.lem: %.ott
# work around what is probably a bug in -generate_aux_rules true: when we try to generate Lem code with
# that turned on, we get some surprising-looking parse failures in a
# few rules. Likely we're not doing the proper transform for rules
# generated from inductive relation syntax.
ott -sort false -generate_aux_rules false -o $@ -picky_multiple_parses true $^
clean:
rm -rf *~
-rm -rf *.uo *.ui *.sig *.sml .HOLMK
-rm -f *.tex *.aux *.log *.dvi *.ps *.pdf
|