author | wenzelm |
Sat, 19 Nov 2005 14:21:00 +0100 | |
changeset 18203 | 9bd26bda96ef |
parent 17821 | daffb154f73e |
child 18482 | ac8456b4080c |
permissions | -rw-r--r-- |
2433 | 1 |
# |
2 |
# $Id$ |
|
3 |
# |
|
4 |
# IsaMakefile for FOL |
|
5 |
# |
|
6 |
||
4518 | 7 |
## targets |
8 |
||
9 |
default: FOL |
|
10 |
images: FOL |
|
11 |
test: FOL-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 |
2433 | 20 |
|
3233 | 21 |
|
4518 | 22 |
## FOL |
23 |
||
17821 | 24 |
FOL: Pure $(OUT)/FOL$(ML_SUFFIX) |
2433 | 25 |
|
4518 | 26 |
Pure: |
27 |
@cd $(SRC)/Pure; $(ISATOOL) make Pure |
|
2433 | 28 |
|
17821 | 29 |
$(OUT)/Pure$(ML_SUFFIX): Pure |
13301 | 30 |
|
17821 | 31 |
$(OUT)/FOL$(ML_SUFFIX): $(OUT)/Pure$(ML_SUFFIX) $(SRC)/Provers/blast.ML \ |
16019 | 32 |
$(SRC)/Provers/clasimp.ML $(SRC)/Provers/classical.ML \ |
33 |
$(SRC)/Provers/eqsubst.ML $(SRC)/Provers/hypsubst.ML \ |
|
34 |
$(SRC)/Provers/ind.ML $(SRC)/Provers/induct_method.ML \ |
|
35 |
$(SRC)/Provers/make_elim.ML $(SRC)/Provers/quantifier1.ML \ |
|
36 |
$(SRC)/Provers/splitter.ML FOL.ML FOL.thy FOL_lemmas1.ML IFOL.ML \ |
|
37 |
IFOL.thy IFOL_lemmas.ML ROOT.ML blastdata.ML cladata.ML \ |
|
38 |
document/root.tex eqrule_FOL_data.ML fologic.ML hypsubstdata.ML \ |
|
39 |
intprover.ML simpdata.ML |
|
18203 | 40 |
@$(ISATOOL) usedir -p 2 -b $(OUT)/Pure FOL |
2433 | 41 |
|
4518 | 42 |
|
43 |
## FOL-ex |
|
44 |
||
45 |
FOL-ex: FOL $(LOG)/FOL-ex.gz |
|
2433 | 46 |
|
17821 | 47 |
$(LOG)/FOL-ex.gz: $(OUT)/FOL$(ML_SUFFIX) ex/First_Order_Logic.thy \ |
16831 | 48 |
ex/If.thy ex/IffOracle.thy ex/List.ML ex/List.thy ex/LocaleTest.thy \ |
12370
f9e6af324d35
added ex/First_Order_Logic.thy, ex/document/root.tex;
wenzelm
parents:
11771
diff
changeset
|
49 |
ex/Nat.ML ex/Nat.thy ex/Nat2.ML ex/Nat2.thy ex/Natural_Numbers.thy \ |
14236 | 50 |
ex/Prolog.ML ex/Prolog.thy ex/ROOT.ML ex/Classical.thy ex/document/root.tex\ |
51 |
ex/foundn.ML ex/Intuitionistic.thy ex/intro.ML ex/prop.ML ex/quant.ML |
|
2821 | 52 |
@$(ISATOOL) usedir $(OUT)/FOL ex |
2433 | 53 |
|
4518 | 54 |
|
55 |
## clean |
|
4447 | 56 |
|
57 |
clean: |
|
17821 | 58 |
@rm -f $(OUT)/FOL$(ML_SUFFIX) $(LOG)/FOL.gz $(LOG)/FOL-ex.gz |