author | ballarin |
Wed, 01 Jun 2005 12:30:49 +0200 | |
changeset 16168 | adb83939177f |
parent 16019 | 0e1405402d53 |
child 16831 | 9ef92b7a2210 |
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 |
||
24 |
FOL: Pure $(OUT)/FOL |
|
2433 | 25 |
|
4518 | 26 |
Pure: |
27 |
@cd $(SRC)/Pure; $(ISATOOL) make Pure |
|
2433 | 28 |
|
13301 | 29 |
$(OUT)/Pure: Pure |
30 |
||
16019 | 31 |
$(OUT)/FOL: $(OUT)/Pure $(SRC)/Provers/blast.ML \ |
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 |
|
2821 | 40 |
@$(ISATOOL) usedir -b $(OUT)/Pure FOL |
2433 | 41 |
|
4518 | 42 |
|
43 |
## FOL-ex |
|
44 |
||
45 |
FOL-ex: FOL $(LOG)/FOL-ex.gz |
|
2433 | 46 |
|
14151 | 47 |
$(LOG)/FOL-ex.gz: $(OUT)/FOL ex/First_Order_Logic.thy \ |
12370
f9e6af324d35
added ex/First_Order_Logic.thy, ex/document/root.tex;
wenzelm
parents:
11771
diff
changeset
|
48 |
ex/If.thy ex/IffOracle.ML ex/IffOracle.thy ex/List.ML ex/List.thy \ |
15596 | 49 |
ex/LocaleTest.thy \ |
12370
f9e6af324d35
added ex/First_Order_Logic.thy, ex/document/root.tex;
wenzelm
parents:
11771
diff
changeset
|
50 |
ex/Nat.ML ex/Nat.thy ex/Nat2.ML ex/Nat2.thy ex/Natural_Numbers.thy \ |
14236 | 51 |
ex/Prolog.ML ex/Prolog.thy ex/ROOT.ML ex/Classical.thy ex/document/root.tex\ |
52 |
ex/foundn.ML ex/Intuitionistic.thy ex/intro.ML ex/prop.ML ex/quant.ML |
|
2821 | 53 |
@$(ISATOOL) usedir $(OUT)/FOL ex |
2433 | 54 |
|
4518 | 55 |
|
56 |
## clean |
|
4447 | 57 |
|
58 |
clean: |
|
4518 | 59 |
@rm -f $(OUT)/FOL $(LOG)/FOL.gz $(LOG)/FOL-ex.gz |