author | krauss |
Sun, 27 Mar 2011 17:32:25 +0200 | |
changeset 42138 | e54a985daa61 |
parent 36862 | 952b2b102a0a |
child 45860 | 93eda35a8377 |
permissions | -rw-r--r-- |
2488 | 1 |
# |
2 |
# IsaMakefile for LCF |
|
3 |
# |
|
4 |
||
4518 | 5 |
## targets |
6 |
||
7 |
default: LCF |
|
8 |
images: LCF |
|
9 |
test: LCF-ex |
|
10 |
all: images test |
|
42138
e54a985daa61
added make target 'smlnj' to refer to what can/should be tested using smlnj -- allows the use of "isabelle makeall smlnj";
krauss
parents:
36862
diff
changeset
|
11 |
smlnj: all |
4518 | 12 |
|
13 |
||
14 |
## global settings |
|
15 |
||
16 |
SRC = $(ISABELLE_HOME)/src |
|
3118 | 17 |
OUT = $(ISABELLE_OUTPUT) |
4447 | 18 |
LOG = $(OUT)/log |
19 |
||
4518 | 20 |
|
21 |
## LCF |
|
22 |
||
23 |
LCF: FOL $(OUT)/LCF |
|
2488 | 24 |
|
4518 | 25 |
FOL: |
28500 | 26 |
@cd $(SRC)/FOL; $(ISABELLE_TOOL) make FOL |
4518 | 27 |
|
19757 | 28 |
$(OUT)/LCF: $(OUT)/FOL LCF.thy ROOT.ML |
28500 | 29 |
@$(ISABELLE_TOOL) usedir -b -r $(OUT)/FOL LCF |
2488 | 30 |
|
4518 | 31 |
|
32 |
## LCF-ex |
|
2488 | 33 |
|
4518 | 34 |
LCF-ex: LCF $(LOG)/LCF-ex.gz |
35 |
||
19755 | 36 |
$(LOG)/LCF-ex.gz: $(OUT)/LCF ex/Ex1.thy ex/Ex2.thy ex/Ex3.thy ex/Ex4.thy ex/ROOT.ML |
28500 | 37 |
@$(ISABELLE_TOOL) usedir $(OUT)/LCF ex |
2488 | 38 |
|
4518 | 39 |
|
40 |
## clean |
|
4447 | 41 |
|
42 |
clean: |
|
4518 | 43 |
@rm -f $(OUT)/LCF $(LOG)/LCF.gz $(LOG)/LCF-ex.gz |