author | wenzelm |
Sat, 25 Jun 2011 11:51:50 +0200 | |
changeset 43539 | c49d8f40ba51 |
parent 42138 | e54a985daa61 |
child 45860 | 93eda35a8377 |
permissions | -rw-r--r-- |
2491 | 1 |
# |
2 |
# IsaMakefile for CTT |
|
3 |
# |
|
4 |
||
4518 | 5 |
## targets |
6 |
||
7 |
default: CTT |
|
8 |
images: CTT |
|
9 |
test: CTT-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 |
2491 | 19 |
|
4518 | 20 |
|
21 |
## CTT |
|
22 |
||
23 |
CTT: Pure $(OUT)/CTT |
|
2491 | 24 |
|
4518 | 25 |
Pure: |
28500 | 26 |
@cd $(SRC)/Pure; $(ISABELLE_TOOL) make Pure |
2491 | 27 |
|
19761 | 28 |
$(OUT)/CTT: $(OUT)/Pure $(SRC)/Provers/typedsimp.ML Arith.thy \ |
29 |
Bool.thy CTT.thy Main.thy ROOT.ML rew.ML |
|
28500 | 30 |
@$(ISABELLE_TOOL) usedir -b $(OUT)/Pure CTT |
2491 | 31 |
|
4518 | 32 |
|
33 |
## CTT-ex |
|
2491 | 34 |
|
4518 | 35 |
CTT-ex: CTT $(LOG)/CTT-ex.gz |
36 |
||
19761 | 37 |
$(LOG)/CTT-ex.gz: $(OUT)/CTT ex/ROOT.ML ex/Elimination.thy \ |
38 |
ex/Equality.thy ex/Synthesis.thy ex/Typechecking.thy |
|
28500 | 39 |
@$(ISABELLE_TOOL) usedir $(OUT)/CTT ex |
2491 | 40 |
|
4518 | 41 |
|
42 |
## clean |
|
4447 | 43 |
|
44 |
clean: |
|
4518 | 45 |
@rm -f $(OUT)/CTT $(LOG)/CTT.gz $(LOG)/CTT-ex.gz |