author | wenzelm |
Thu, 05 Jan 2012 20:26:01 +0100 | |
changeset 46126 | bab00660539d |
parent 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 |
|
45860 | 11 |
full: all |
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
|
12 |
smlnj: all |
4518 | 13 |
|
14 |
||
15 |
## global settings |
|
16 |
||
17 |
SRC = $(ISABELLE_HOME)/src |
|
3118 | 18 |
OUT = $(ISABELLE_OUTPUT) |
4447 | 19 |
LOG = $(OUT)/log |
2491 | 20 |
|
4518 | 21 |
|
22 |
## CTT |
|
23 |
||
24 |
CTT: Pure $(OUT)/CTT |
|
2491 | 25 |
|
4518 | 26 |
Pure: |
28500 | 27 |
@cd $(SRC)/Pure; $(ISABELLE_TOOL) make Pure |
2491 | 28 |
|
19761 | 29 |
$(OUT)/CTT: $(OUT)/Pure $(SRC)/Provers/typedsimp.ML Arith.thy \ |
30 |
Bool.thy CTT.thy Main.thy ROOT.ML rew.ML |
|
28500 | 31 |
@$(ISABELLE_TOOL) usedir -b $(OUT)/Pure CTT |
2491 | 32 |
|
4518 | 33 |
|
34 |
## CTT-ex |
|
2491 | 35 |
|
4518 | 36 |
CTT-ex: CTT $(LOG)/CTT-ex.gz |
37 |
||
19761 | 38 |
$(LOG)/CTT-ex.gz: $(OUT)/CTT ex/ROOT.ML ex/Elimination.thy \ |
39 |
ex/Equality.thy ex/Synthesis.thy ex/Typechecking.thy |
|
28500 | 40 |
@$(ISABELLE_TOOL) usedir $(OUT)/CTT ex |
2491 | 41 |
|
4518 | 42 |
|
43 |
## clean |
|
4447 | 44 |
|
45 |
clean: |
|
4518 | 46 |
@rm -f $(OUT)/CTT $(LOG)/CTT.gz $(LOG)/CTT-ex.gz |