author | haftmann |
Thu, 22 Mar 2012 18:54:39 +0100 | |
changeset 47087 | 08c22e8ffe70 |
parent 45860 | 93eda35a8377 |
permissions | -rw-r--r-- |
2433 | 1 |
# |
2 |
# IsaMakefile for FOL |
|
3 |
# |
|
4 |
||
4518 | 5 |
## targets |
6 |
||
7 |
default: FOL |
|
8 |
images: FOL |
|
9 |
test: FOL-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:
41827
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 |
2433 | 20 |
|
3233 | 21 |
|
4518 | 22 |
## FOL |
23 |
||
27203 | 24 |
FOL: Pure $(OUT)/FOL |
2433 | 25 |
|
4518 | 26 |
Pure: |
28500 | 27 |
@cd $(SRC)/Pure; $(ISABELLE_TOOL) make Pure |
2433 | 28 |
|
27203 | 29 |
$(OUT)/Pure: Pure |
13301 | 30 |
|
27203 | 31 |
$(OUT)/FOL: $(OUT)/Pure $(SRC)/Provers/blast.ML \ |
16019 | 32 |
$(SRC)/Provers/clasimp.ML $(SRC)/Provers/classical.ML \ |
44121 | 33 |
$(SRC)/Tools/case_product.ML $(SRC)/Tools/misc_legacy.ML \ |
34 |
$(SRC)/Tools/IsaPlanner/zipper.ML $(SRC)/Tools/IsaPlanner/isand.ML \ |
|
35 |
$(SRC)/Tools/IsaPlanner/rw_tools.ML \ |
|
30160
5f7b17941730
moved some generic tools to src/Tools/ -- src/Provers is essentially obsolete;
wenzelm
parents:
29752
diff
changeset
|
36 |
$(SRC)/Tools/IsaPlanner/rw_inst.ML $(SRC)/Tools/eqsubst.ML \ |
27203 | 37 |
$(SRC)/Provers/hypsubst.ML $(SRC)/Tools/induct.ML \ |
30165
6ee87f67d9cd
moved generic intuitionistic prover to src/Tools/intuitionistic.ML;
wenzelm
parents:
30160
diff
changeset
|
38 |
$(SRC)/Tools/intuitionistic.ML $(SRC)/Tools/atomize_elim.ML \ |
6ee87f67d9cd
moved generic intuitionistic prover to src/Tools/intuitionistic.ML;
wenzelm
parents:
30160
diff
changeset
|
39 |
$(SRC)/Tools/project_rule.ML $(SRC)/Provers/quantifier1.ML \ |
42793 | 40 |
$(SRC)/Provers/splitter.ML FOL.thy IFOL.thy ROOT.ML \ |
42799 | 41 |
document/root.tex fologic.ML intprover.ML simpdata.ML |
28500 | 42 |
@$(ISABELLE_TOOL) usedir -p 2 -b $(OUT)/Pure FOL |
2433 | 43 |
|
4518 | 44 |
|
45 |
## FOL-ex |
|
46 |
||
47 |
FOL-ex: FOL $(LOG)/FOL-ex.gz |
|
2433 | 48 |
|
27203 | 49 |
$(LOG)/FOL-ex.gz: $(OUT)/FOL ex/First_Order_Logic.thy ex/If.thy \ |
40239
c4336e45f199
moved FOL/ex/Iff_Oracle.thy to HOL/ex where it is more accessible to most readers of isar-ref;
wenzelm
parents:
37134
diff
changeset
|
50 |
ex/Nat.thy ex/Nat_Class.thy ex/Natural_Numbers.thy \ |
37134 | 51 |
ex/Locale_Test/Locale_Test.thy ex/Locale_Test/Locale_Test1.thy \ |
52 |
ex/Locale_Test/Locale_Test2.thy ex/Locale_Test/Locale_Test3.thy \ |
|
40239
c4336e45f199
moved FOL/ex/Iff_Oracle.thy to HOL/ex where it is more accessible to most readers of isar-ref;
wenzelm
parents:
37134
diff
changeset
|
53 |
ex/Miniscope.thy ex/Prolog.thy ex/ROOT.ML ex/Classical.thy \ |
c4336e45f199
moved FOL/ex/Iff_Oracle.thy to HOL/ex where it is more accessible to most readers of isar-ref;
wenzelm
parents:
37134
diff
changeset
|
54 |
ex/document/root.tex ex/Foundation.thy ex/Intuitionistic.thy \ |
c4336e45f199
moved FOL/ex/Iff_Oracle.thy to HOL/ex where it is more accessible to most readers of isar-ref;
wenzelm
parents:
37134
diff
changeset
|
55 |
ex/Intro.thy ex/Propositional_Int.thy ex/Propositional_Cla.thy \ |
c4336e45f199
moved FOL/ex/Iff_Oracle.thy to HOL/ex where it is more accessible to most readers of isar-ref;
wenzelm
parents:
37134
diff
changeset
|
56 |
ex/Quantifiers_Int.thy ex/Quantifiers_Cla.thy |
28500 | 57 |
@$(ISABELLE_TOOL) usedir $(OUT)/FOL ex |
2433 | 58 |
|
4518 | 59 |
|
60 |
## clean |
|
4447 | 61 |
|
62 |
clean: |
|
27203 | 63 |
@rm -f $(OUT)/FOL $(LOG)/FOL.gz $(LOG)/FOL-ex.gz |