author | bulwahn |
Mon, 16 Jul 2012 08:44:29 +0200 | |
changeset 48267 | f5676fad35a3 |
parent 45860 | 93eda35a8377 |
permissions | -rw-r--r-- |
2490 | 1 |
# |
2 |
# IsaMakefile for FOLP |
|
3 |
# |
|
4 |
||
4518 | 5 |
## targets |
6 |
||
7 |
default: FOLP |
|
8 |
images: FOLP |
|
9 |
test: FOLP-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 |
2490 | 20 |
|
4518 | 21 |
|
22 |
## FOLP |
|
23 |
||
24 |
FOLP: Pure $(OUT)/FOLP |
|
2490 | 25 |
|
4518 | 26 |
Pure: |
28500 | 27 |
@cd $(SRC)/Pure; $(ISABELLE_TOOL) make Pure |
2490 | 28 |
|
26408 | 29 |
$(OUT)/FOLP: $(OUT)/Pure FOLP.thy IFOLP.thy ROOT.ML classical.ML \ |
44121 | 30 |
hypsubst.ML intprover.ML simp.ML simpdata.ML $(SRC)/Tools/misc_legacy.ML |
28500 | 31 |
@$(ISABELLE_TOOL) usedir -b $(OUT)/Pure FOLP |
2490 | 32 |
|
4518 | 33 |
|
34 |
## FOLP-ex |
|
2490 | 35 |
|
4518 | 36 |
FOLP-ex: FOLP $(LOG)/FOLP-ex.gz |
37 |
||
26408 | 38 |
$(LOG)/FOLP-ex.gz: $(OUT)/FOLP ex/ROOT.ML ex/Foundation.thy ex/If.thy \ |
39 |
ex/Intro.thy ex/Nat.thy ex/Intuitionistic.thy ex/Classical.thy \ |
|
45737
e77eba3cb2e1
removed dead code, which has never been active in recorded history;
wenzelm
parents:
44121
diff
changeset
|
40 |
ex/Propositional_Int.thy ex/Propositional_Cla.thy \ |
e77eba3cb2e1
removed dead code, which has never been active in recorded history;
wenzelm
parents:
44121
diff
changeset
|
41 |
ex/Quantifiers_Int.thy ex/Quantifiers_Cla.thy |
28500 | 42 |
@$(ISABELLE_TOOL) usedir $(OUT)/FOLP ex |
2490 | 43 |
|
4518 | 44 |
|
45 |
## clean |
|
4447 | 46 |
|
47 |
clean: |
|
4518 | 48 |
@rm -f $(OUT)/FOLP $(LOG)/FOLP.gz $(LOG)/FOLP-ex.gz |