2490
|
1 |
#
|
|
2 |
# $Id$
|
|
3 |
#
|
|
4 |
# IsaMakefile for FOLP
|
|
5 |
#
|
|
6 |
|
4518
|
7 |
## targets
|
|
8 |
|
|
9 |
default: FOLP
|
|
10 |
images: FOLP
|
|
11 |
test: FOLP-ex
|
|
12 |
all: images test
|
|
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 \
|
|
30 |
hypsubst.ML intprover.ML simp.ML simpdata.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 \
|
|
40 |
ex/Prolog.ML ex/Prolog.thy ex/Propositional_Int.thy \
|
|
41 |
ex/Propositional_Cla.thy ex/Quantifiers_Int.thy \
|
|
42 |
ex/Quantifiers_Cla.thy
|
28500
|
43 |
@$(ISABELLE_TOOL) usedir $(OUT)/FOLP ex
|
2490
|
44 |
|
4518
|
45 |
|
|
46 |
## clean
|
4447
|
47 |
|
|
48 |
clean:
|
4518
|
49 |
@rm -f $(OUT)/FOLP $(LOG)/FOLP.gz $(LOG)/FOLP-ex.gz
|