author | noschinl |
Mon, 09 May 2011 12:26:25 +0200 | |
changeset 42713 | 276c8cbeb5d2 |
parent 42138 | e54a985daa61 |
child 44121 | 44adaa6db327 |
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 |
|
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 |
2490 | 19 |
|
4518 | 20 |
|
21 |
## FOLP |
|
22 |
||
23 |
FOLP: Pure $(OUT)/FOLP |
|
2490 | 24 |
|
4518 | 25 |
Pure: |
28500 | 26 |
@cd $(SRC)/Pure; $(ISABELLE_TOOL) make Pure |
2490 | 27 |
|
26408 | 28 |
$(OUT)/FOLP: $(OUT)/Pure FOLP.thy IFOLP.thy ROOT.ML classical.ML \ |
29 |
hypsubst.ML intprover.ML simp.ML simpdata.ML |
|
28500 | 30 |
@$(ISABELLE_TOOL) usedir -b $(OUT)/Pure FOLP |
2490 | 31 |
|
4518 | 32 |
|
33 |
## FOLP-ex |
|
2490 | 34 |
|
4518 | 35 |
FOLP-ex: FOLP $(LOG)/FOLP-ex.gz |
36 |
||
26408 | 37 |
$(LOG)/FOLP-ex.gz: $(OUT)/FOLP ex/ROOT.ML ex/Foundation.thy ex/If.thy \ |
38 |
ex/Intro.thy ex/Nat.thy ex/Intuitionistic.thy ex/Classical.thy \ |
|
39 |
ex/Prolog.ML ex/Prolog.thy ex/Propositional_Int.thy \ |
|
40 |
ex/Propositional_Cla.thy ex/Quantifiers_Int.thy \ |
|
41 |
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 |