author | bulwahn |
Fri, 23 Mar 2012 12:03:59 +0100 | |
changeset 47090 | 6b53d954255b |
parent 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 |
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 |
2492 | 20 |
|
4518 | 21 |
|
22 |
## Sequents |
|
23 |
||
24 |
Sequents: Pure $(OUT)/Sequents |
|
2492 | 25 |
|
4518 | 26 |
Pure: |
28500 | 27 |
@cd $(SRC)/Pure; $(ISABELLE_TOOL) make Pure |
2492 | 28 |
|
21427 | 29 |
$(OUT)/Sequents: $(OUT)/Pure ILL.thy LK0.thy LK.thy \ |
21426 | 30 |
modal.ML ROOT.ML simpdata.ML S4.thy S43.thy Sequents.thy T.thy prover.ML \ |
31 |
ILL_predlog.thy Washing.thy |
|
28500 | 32 |
@$(ISABELLE_TOOL) usedir -b $(OUT)/Pure Sequents |
2492 | 33 |
|
4518 | 34 |
|
6252 | 35 |
## Sequents-LK |
2492 | 36 |
|
6252 | 37 |
Sequents-LK: Sequents $(LOG)/Sequents-LK.gz |
38 |
||
21426 | 39 |
$(LOG)/Sequents-LK.gz: $(OUT)/Sequents LK/ROOT.ML LK/Hard_Quantifiers.thy \ |
40 |
LK/Propositional.thy LK/Quantifiers.thy LK/Nat.thy |
|
28500 | 41 |
@$(ISABELLE_TOOL) usedir $(OUT)/Sequents LK |
6252 | 42 |
|
43 |
||
4518 | 44 |
## clean |
4447 | 45 |
|
46 |
clean: |
|
21426 | 47 |
@rm -f $(OUT)/Sequents $(LOG)/Sequents.gz $(LOG)/Sequents-LK.gz |