author | wenzelm |
Wed, 17 Oct 2012 14:39:00 +0200 | |
changeset 49891 | a6563caedf7a |
parent 48727 | 6461ad428015 |
permissions | -rw-r--r-- |
2448 | 1 |
# |
48722
a5e3ba7cbb2a
discontinued obsolete IsaMakefile and ROOT.ML files from the Isabelle distribution;
wenzelm
parents:
48625
diff
changeset
|
2 |
# approximative IsaMakefile for legacy applications |
a5e3ba7cbb2a
discontinued obsolete IsaMakefile and ROOT.ML files from the Isabelle distribution;
wenzelm
parents:
48625
diff
changeset
|
3 |
# |
2448 | 4 |
|
4518 | 5 |
default: HOL |
33210
94ae82a4452f
recovered sort indentation for "sort position", as documented in the file;
wenzelm
parents:
33204
diff
changeset
|
6 |
|
48722
a5e3ba7cbb2a
discontinued obsolete IsaMakefile and ROOT.ML files from the Isabelle distribution;
wenzelm
parents:
48625
diff
changeset
|
7 |
clean: |
a5e3ba7cbb2a
discontinued obsolete IsaMakefile and ROOT.ML files from the Isabelle distribution;
wenzelm
parents:
48625
diff
changeset
|
8 |
-@$(ISABELLE_TOOL) build -a -n -c |
10135 | 9 |
|
48722
a5e3ba7cbb2a
discontinued obsolete IsaMakefile and ROOT.ML files from the Isabelle distribution;
wenzelm
parents:
48625
diff
changeset
|
10 |
all: |
a5e3ba7cbb2a
discontinued obsolete IsaMakefile and ROOT.ML files from the Isabelle distribution;
wenzelm
parents:
48625
diff
changeset
|
11 |
@$(ISABELLE_TOOL) build -a |
28401 | 12 |
|
48723 | 13 |
|
14 |
Pure: $(ISABELLE_OUTPUT)/Pure |
|
15 |
||
16 |
$(ISABELLE_OUTPUT)/Pure: |
|
48722
a5e3ba7cbb2a
discontinued obsolete IsaMakefile and ROOT.ML files from the Isabelle distribution;
wenzelm
parents:
48625
diff
changeset
|
17 |
@$(ISABELLE_TOOL) build -b Pure |
27368 | 18 |
|
48723 | 19 |
|
20 |
HOL: $(ISABELLE_OUTPUT)/HOL |
|
21 |
||
22 |
$(ISABELLE_OUTPUT)/HOL: |
|
48722
a5e3ba7cbb2a
discontinued obsolete IsaMakefile and ROOT.ML files from the Isabelle distribution;
wenzelm
parents:
48625
diff
changeset
|
23 |
@$(ISABELLE_TOOL) build -b HOL |
2448 | 24 |
|
48723 | 25 |
|
26 |
HOL-Library: $(ISABELLE_OUTPUT)/HOL-Library |
|
27 |
||
28 |
$(ISABELLE_OUTPUT)/HOL-Library: |
|
48722
a5e3ba7cbb2a
discontinued obsolete IsaMakefile and ROOT.ML files from the Isabelle distribution;
wenzelm
parents:
48625
diff
changeset
|
29 |
@$(ISABELLE_TOOL) build -b HOL-Library |
2448 | 30 |
|
48723 | 31 |
|
32 |
HOL-IMP: $(ISABELLE_OUTPUT)/HOL-IMP |
|
33 |
||
34 |
$(ISABELLE_OUTPUT)/HOL-IMP: |
|
48722
a5e3ba7cbb2a
discontinued obsolete IsaMakefile and ROOT.ML files from the Isabelle distribution;
wenzelm
parents:
48625
diff
changeset
|
35 |
@$(ISABELLE_TOOL) build -b HOL-IMP |
2448 | 36 |
|
48723 | 37 |
|
38 |
HOL-Multivariate_Analysis: $(ISABELLE_OUTPUT)/HOL-Multivariate_Analysis |
|
39 |
||
40 |
$(ISABELLE_OUTPUT)/HOL-Multivariate_Analysis: |
|
48722
a5e3ba7cbb2a
discontinued obsolete IsaMakefile and ROOT.ML files from the Isabelle distribution;
wenzelm
parents:
48625
diff
changeset
|
41 |
@$(ISABELLE_TOOL) build -b HOL-Multivariate_Analysis |
33175 | 42 |
|
48723 | 43 |
|
48727
6461ad428015
add legacy target for HOL-Probability, needed by AFP/Markov_Models
hoelzl
parents:
48723
diff
changeset
|
44 |
HOL-Probability: $(ISABELLE_OUTPUT)/HOL-Probability |
6461ad428015
add legacy target for HOL-Probability, needed by AFP/Markov_Models
hoelzl
parents:
48723
diff
changeset
|
45 |
|
6461ad428015
add legacy target for HOL-Probability, needed by AFP/Markov_Models
hoelzl
parents:
48723
diff
changeset
|
46 |
$(ISABELLE_OUTPUT)/HOL-Probability: |
6461ad428015
add legacy target for HOL-Probability, needed by AFP/Markov_Models
hoelzl
parents:
48723
diff
changeset
|
47 |
@$(ISABELLE_TOOL) build -b HOL-Probability |
6461ad428015
add legacy target for HOL-Probability, needed by AFP/Markov_Models
hoelzl
parents:
48723
diff
changeset
|
48 |
|
6461ad428015
add legacy target for HOL-Probability, needed by AFP/Markov_Models
hoelzl
parents:
48723
diff
changeset
|
49 |
|
48723 | 50 |
HOL-Nominal: $(ISABELLE_OUTPUT)/HOL-Nominal |
51 |
||
52 |
$(ISABELLE_OUTPUT)/HOL-Nominal: |
|
48722
a5e3ba7cbb2a
discontinued obsolete IsaMakefile and ROOT.ML files from the Isabelle distribution;
wenzelm
parents:
48625
diff
changeset
|
53 |
@$(ISABELLE_TOOL) build -b HOL-Nominal |
41566 | 54 |
|
48723 | 55 |
|
56 |
HOL-Word: $(ISABELLE_OUTPUT)/HOL-Word |
|
57 |
||
58 |
$(ISABELLE_OUTPUT)/HOL-Word: |
|
48722
a5e3ba7cbb2a
discontinued obsolete IsaMakefile and ROOT.ML files from the Isabelle distribution;
wenzelm
parents:
48625
diff
changeset
|
59 |
@$(ISABELLE_TOOL) build -b HOL-Word |
40774 | 60 |
|
48723 | 61 |
|
62 |
HOLCF: $(ISABELLE_OUTPUT)/HOLCF |
|
63 |
||
64 |
$(ISABELLE_OUTPUT)/HOLCF: |
|
48722
a5e3ba7cbb2a
discontinued obsolete IsaMakefile and ROOT.ML files from the Isabelle distribution;
wenzelm
parents:
48625
diff
changeset
|
65 |
@$(ISABELLE_TOOL) build -b HOLCF |
40774 | 66 |