author | wenzelm |
Thu, 07 Jul 2011 23:55:15 +0200 | |
changeset 43698 | 91c4d7397f0e |
parent 42138 | e54a985daa61 |
child 45860 | 93eda35a8377 |
permissions | -rw-r--r-- |
2492 | 1 |
# |
2 |
# IsaMakefile for Sequents |
|
3 |
# |
|
4 |
||
4518 | 5 |
## targets |
6 |
||
7 |
default: Sequents |
|
8 |
images: Sequents |
|
21426 | 9 |
test: Sequents-LK |
4518 | 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 |
2492 | 19 |
|
4518 | 20 |
|
21 |
## Sequents |
|
22 |
||
23 |
Sequents: Pure $(OUT)/Sequents |
|
2492 | 24 |
|
4518 | 25 |
Pure: |
28500 | 26 |
@cd $(SRC)/Pure; $(ISABELLE_TOOL) make Pure |
2492 | 27 |
|
21427 | 28 |
$(OUT)/Sequents: $(OUT)/Pure ILL.thy LK0.thy LK.thy \ |
21426 | 29 |
modal.ML ROOT.ML simpdata.ML S4.thy S43.thy Sequents.thy T.thy prover.ML \ |
30 |
ILL_predlog.thy Washing.thy |
|
28500 | 31 |
@$(ISABELLE_TOOL) usedir -b $(OUT)/Pure Sequents |
2492 | 32 |
|
4518 | 33 |
|
6252 | 34 |
## Sequents-LK |
2492 | 35 |
|
6252 | 36 |
Sequents-LK: Sequents $(LOG)/Sequents-LK.gz |
37 |
||
21426 | 38 |
$(LOG)/Sequents-LK.gz: $(OUT)/Sequents LK/ROOT.ML LK/Hard_Quantifiers.thy \ |
39 |
LK/Propositional.thy LK/Quantifiers.thy LK/Nat.thy |
|
28500 | 40 |
@$(ISABELLE_TOOL) usedir $(OUT)/Sequents LK |
6252 | 41 |
|
42 |
||
4518 | 43 |
## clean |
4447 | 44 |
|
45 |
clean: |
|
21426 | 46 |
@rm -f $(OUT)/Sequents $(LOG)/Sequents.gz $(LOG)/Sequents-LK.gz |