author | wenzelm |
Thu, 12 Aug 2010 13:49:08 +0200 | |
changeset 38360 | 53224a4d2f0e |
parent 38137 | 6fda94059baa |
child 39143 | d80990d8b909 |
permissions | -rw-r--r-- |
2494 | 1 |
# |
2 |
# IsaMakefile for HOLCF |
|
3 |
# |
|
4 |
||
4518 | 5 |
## targets |
2494 | 6 |
|
4518 | 7 |
default: HOLCF |
8 |
images: HOLCF IOA |
|
37779
982b0668dcbd
removed old HOL/HOLCF-Modelcheck setup, which has been unused/untested for many years;
wenzelm
parents:
37119
diff
changeset
|
9 |
test: \ |
982b0668dcbd
removed old HOL/HOLCF-Modelcheck setup, which has been unused/untested for many years;
wenzelm
parents:
37119
diff
changeset
|
10 |
HOLCF-FOCUS \ |
982b0668dcbd
removed old HOL/HOLCF-Modelcheck setup, which has been unused/untested for many years;
wenzelm
parents:
37119
diff
changeset
|
11 |
HOLCF-IMP \ |
37110
7ffdbc24b27f
move Strict_Fun and Stream theories to new HOLCF/Library directory; add HOLCF/Library to search path
huffman
parents:
37109
diff
changeset
|
12 |
HOLCF-Library \ |
37000
41a22e7c1145
move some example files into new HOLCF/Tutorial directory
huffman
parents:
35932
diff
changeset
|
13 |
HOLCF-Tutorial \ |
37779
982b0668dcbd
removed old HOL/HOLCF-Modelcheck setup, which has been unused/untested for many years;
wenzelm
parents:
37119
diff
changeset
|
14 |
HOLCF-ex \ |
982b0668dcbd
removed old HOL/HOLCF-Modelcheck setup, which has been unused/untested for many years;
wenzelm
parents:
37119
diff
changeset
|
15 |
IOA-ABP \ |
982b0668dcbd
removed old HOL/HOLCF-Modelcheck setup, which has been unused/untested for many years;
wenzelm
parents:
37119
diff
changeset
|
16 |
IOA-NTP \ |
982b0668dcbd
removed old HOL/HOLCF-Modelcheck setup, which has been unused/untested for many years;
wenzelm
parents:
37119
diff
changeset
|
17 |
IOA-Storage \ |
982b0668dcbd
removed old HOL/HOLCF-Modelcheck setup, which has been unused/untested for many years;
wenzelm
parents:
37119
diff
changeset
|
18 |
IOA-ex |
4518 | 19 |
all: images test |
20 |
||
21 |
||
22 |
## global settings |
|
23 |
||
24 |
SRC = $(ISABELLE_HOME)/src |
|
3118 | 25 |
OUT = $(ISABELLE_OUTPUT) |
4447 | 26 |
LOG = $(OUT)/log |
2494 | 27 |
|
4518 | 28 |
|
29 |
## HOLCF |
|
30 |
||
31 |
HOLCF: HOL $(OUT)/HOLCF |
|
32 |
||
33 |
HOL: |
|
28500 | 34 |
@cd $(SRC)/HOL; $(ISABELLE_TOOL) make HOL |
2494 | 35 |
|
27420 | 36 |
$(OUT)/HOLCF: $(OUT)/HOL \ |
37 |
ROOT.ML \ |
|
38 |
Adm.thy \ |
|
39 |
Algebraic.thy \ |
|
40 |
Bifinite.thy \ |
|
41 |
Cfun.thy \ |
|
42 |
CompactBasis.thy \ |
|
43 |
Completion.thy \ |
|
44 |
Cont.thy \ |
|
45 |
ConvexPD.thy \ |
|
46 |
Cprod.thy \ |
|
47 |
Discrete.thy \ |
|
48 |
Deflation.thy \ |
|
49 |
Domain.thy \ |
|
35652
05ca920cd94b
move take-proofs stuff into new theory Domain_Aux.thy
huffman
parents:
35530
diff
changeset
|
50 |
Domain_Aux.thy \ |
27420 | 51 |
Eventual.thy \ |
52 |
Ffun.thy \ |
|
53 |
Fixrec.thy \ |
|
54 |
Fix.thy \ |
|
55 |
HOLCF.thy \ |
|
56 |
Lift.thy \ |
|
57 |
LowerPD.thy \ |
|
58 |
One.thy \ |
|
59 |
Pcpodef.thy \ |
|
60 |
Pcpo.thy \ |
|
61 |
Porder.thy \ |
|
35473 | 62 |
Powerdomains.thy \ |
29530
9905b660612b
change to simpler, more extensible continuity simproc
huffman
parents:
29130
diff
changeset
|
63 |
Product_Cpo.thy \ |
33783 | 64 |
Representable.thy \ |
27420 | 65 |
Sprod.thy \ |
66 |
Ssum.thy \ |
|
67 |
Tr.thy \ |
|
68 |
Universal.thy \ |
|
69 |
UpperPD.thy \ |
|
70 |
Up.thy \ |
|
71 |
Tools/cont_consts.ML \ |
|
72 |
Tools/cont_proc.ML \ |
|
35475
979019ab92eb
move common functions into new file holcf_library.ML
huffman
parents:
35473
diff
changeset
|
73 |
Tools/holcf_library.ML \ |
32126 | 74 |
Tools/Domain/domain_extender.ML \ |
75 |
Tools/Domain/domain_axioms.ML \ |
|
35473 | 76 |
Tools/Domain/domain_constructors.ML \ |
33795 | 77 |
Tools/Domain/domain_isomorphism.ML \ |
32126 | 78 |
Tools/Domain/domain_library.ML \ |
35530 | 79 |
Tools/Domain/domain_take_proofs.ML \ |
32126 | 80 |
Tools/Domain/domain_theorems.ML \ |
31738
7b9b9ba532ca
discontinued ancient tradition to suffix certain ML module names with "_package"
haftmann
parents:
30920
diff
changeset
|
81 |
Tools/fixrec.ML \ |
7b9b9ba532ca
discontinued ancient tradition to suffix certain ML module names with "_package"
haftmann
parents:
30920
diff
changeset
|
82 |
Tools/pcpodef.ML \ |
33783 | 83 |
Tools/repdef.ML \ |
27420 | 84 |
document/root.tex |
28500 | 85 |
@$(ISABELLE_TOOL) usedir -b -g true -r $(OUT)/HOL HOLCF |
2494 | 86 |
|
4518 | 87 |
|
37000
41a22e7c1145
move some example files into new HOLCF/Tutorial directory
huffman
parents:
35932
diff
changeset
|
88 |
## HOLCF-Tutorial |
41a22e7c1145
move some example files into new HOLCF/Tutorial directory
huffman
parents:
35932
diff
changeset
|
89 |
|
41a22e7c1145
move some example files into new HOLCF/Tutorial directory
huffman
parents:
35932
diff
changeset
|
90 |
HOLCF-Tutorial: HOLCF $(LOG)/HOLCF-Tutorial.gz |
41a22e7c1145
move some example files into new HOLCF/Tutorial directory
huffman
parents:
35932
diff
changeset
|
91 |
|
41a22e7c1145
move some example files into new HOLCF/Tutorial directory
huffman
parents:
35932
diff
changeset
|
92 |
$(LOG)/HOLCF-Tutorial.gz: $(OUT)/HOLCF \ |
41a22e7c1145
move some example files into new HOLCF/Tutorial directory
huffman
parents:
35932
diff
changeset
|
93 |
Tutorial/Domain_ex.thy \ |
41a22e7c1145
move some example files into new HOLCF/Tutorial directory
huffman
parents:
35932
diff
changeset
|
94 |
Tutorial/Fixrec_ex.thy \ |
41a22e7c1145
move some example files into new HOLCF/Tutorial directory
huffman
parents:
35932
diff
changeset
|
95 |
Tutorial/New_Domain.thy \ |
41a22e7c1145
move some example files into new HOLCF/Tutorial directory
huffman
parents:
35932
diff
changeset
|
96 |
Tutorial/document/root.tex \ |
41a22e7c1145
move some example files into new HOLCF/Tutorial directory
huffman
parents:
35932
diff
changeset
|
97 |
Tutorial/ROOT.ML |
41a22e7c1145
move some example files into new HOLCF/Tutorial directory
huffman
parents:
35932
diff
changeset
|
98 |
@$(ISABELLE_TOOL) usedir $(OUT)/HOLCF Tutorial |
41a22e7c1145
move some example files into new HOLCF/Tutorial directory
huffman
parents:
35932
diff
changeset
|
99 |
|
41a22e7c1145
move some example files into new HOLCF/Tutorial directory
huffman
parents:
35932
diff
changeset
|
100 |
|
37110
7ffdbc24b27f
move Strict_Fun and Stream theories to new HOLCF/Library directory; add HOLCF/Library to search path
huffman
parents:
37109
diff
changeset
|
101 |
## HOLCF-Library |
7ffdbc24b27f
move Strict_Fun and Stream theories to new HOLCF/Library directory; add HOLCF/Library to search path
huffman
parents:
37109
diff
changeset
|
102 |
|
7ffdbc24b27f
move Strict_Fun and Stream theories to new HOLCF/Library directory; add HOLCF/Library to search path
huffman
parents:
37109
diff
changeset
|
103 |
HOLCF-Library: HOLCF $(LOG)/HOLCF-Library.gz |
7ffdbc24b27f
move Strict_Fun and Stream theories to new HOLCF/Library directory; add HOLCF/Library to search path
huffman
parents:
37109
diff
changeset
|
104 |
|
7ffdbc24b27f
move Strict_Fun and Stream theories to new HOLCF/Library directory; add HOLCF/Library to search path
huffman
parents:
37109
diff
changeset
|
105 |
$(LOG)/HOLCF-Library.gz: $(OUT)/HOLCF \ |
7ffdbc24b27f
move Strict_Fun and Stream theories to new HOLCF/Library directory; add HOLCF/Library to search path
huffman
parents:
37109
diff
changeset
|
106 |
Library/Stream.thy \ |
7ffdbc24b27f
move Strict_Fun and Stream theories to new HOLCF/Library directory; add HOLCF/Library to search path
huffman
parents:
37109
diff
changeset
|
107 |
Library/Strict_Fun.thy \ |
37111 | 108 |
Library/Sum_Cpo.thy \ |
37110
7ffdbc24b27f
move Strict_Fun and Stream theories to new HOLCF/Library directory; add HOLCF/Library to search path
huffman
parents:
37109
diff
changeset
|
109 |
Library/HOLCF_Library.thy \ |
38137
6fda94059baa
renamed funny Library ROOT files back to default ROOT.ML -- ML files are no longer located via implicit load path (cf. 2b9bfa0b44f1);
wenzelm
parents:
37785
diff
changeset
|
110 |
Library/ROOT.ML |
6fda94059baa
renamed funny Library ROOT files back to default ROOT.ML -- ML files are no longer located via implicit load path (cf. 2b9bfa0b44f1);
wenzelm
parents:
37785
diff
changeset
|
111 |
@$(ISABELLE_TOOL) usedir $(OUT)/HOLCF Library |
37110
7ffdbc24b27f
move Strict_Fun and Stream theories to new HOLCF/Library directory; add HOLCF/Library to search path
huffman
parents:
37109
diff
changeset
|
112 |
|
7ffdbc24b27f
move Strict_Fun and Stream theories to new HOLCF/Library directory; add HOLCF/Library to search path
huffman
parents:
37109
diff
changeset
|
113 |
|
4518 | 114 |
## HOLCF-IMP |
2494 | 115 |
|
4518 | 116 |
HOLCF-IMP: HOLCF $(LOG)/HOLCF-IMP.gz |
117 |
||
12433 | 118 |
$(LOG)/HOLCF-IMP.gz: $(OUT)/HOLCF IMP/HoareEx.thy \ |
12599 | 119 |
IMP/Denotational.thy IMP/ROOT.ML IMP/document/root.tex |
28500 | 120 |
@$(ISABELLE_TOOL) usedir $(OUT)/HOLCF IMP |
2494 | 121 |
|
122 |
||
4518 | 123 |
## HOLCF-ex |
124 |
||
125 |
HOLCF-ex: HOLCF $(LOG)/HOLCF-ex.gz |
|
2494 | 126 |
|
30920
811ab0923a62
add HOLCF/ex/Domain_ex.thy, with example uses of the domain package
huffman
parents:
29992
diff
changeset
|
127 |
$(LOG)/HOLCF-ex.gz: $(OUT)/HOLCF \ |
811ab0923a62
add HOLCF/ex/Domain_ex.thy, with example uses of the domain package
huffman
parents:
29992
diff
changeset
|
128 |
../HOL/Library/Nat_Infinity.thy \ |
811ab0923a62
add HOLCF/ex/Domain_ex.thy, with example uses of the domain package
huffman
parents:
29992
diff
changeset
|
129 |
ex/Dagstuhl.thy \ |
811ab0923a62
add HOLCF/ex/Domain_ex.thy, with example uses of the domain package
huffman
parents:
29992
diff
changeset
|
130 |
ex/Dnat.thy \ |
35167 | 131 |
ex/Domain_Proofs.thy \ |
30920
811ab0923a62
add HOLCF/ex/Domain_ex.thy, with example uses of the domain package
huffman
parents:
29992
diff
changeset
|
132 |
ex/Fix2.thy \ |
811ab0923a62
add HOLCF/ex/Domain_ex.thy, with example uses of the domain package
huffman
parents:
29992
diff
changeset
|
133 |
ex/Focus_ex.thy \ |
811ab0923a62
add HOLCF/ex/Domain_ex.thy, with example uses of the domain package
huffman
parents:
29992
diff
changeset
|
134 |
ex/Hoare.thy \ |
35932
86559356502d
move letrec stuff to new file HOLCF/ex/Letrec.thy
huffman
parents:
35908
diff
changeset
|
135 |
ex/Letrec.thy \ |
30920
811ab0923a62
add HOLCF/ex/Domain_ex.thy, with example uses of the domain package
huffman
parents:
29992
diff
changeset
|
136 |
ex/Loop.thy \ |
37109
e67760c1b851
move unused pattern match syntax stuff into HOLCF/ex
huffman
parents:
37000
diff
changeset
|
137 |
ex/Pattern_Match.thy \ |
29992 | 138 |
ex/Powerdomain_ex.thy \ |
30920
811ab0923a62
add HOLCF/ex/Domain_ex.thy, with example uses of the domain package
huffman
parents:
29992
diff
changeset
|
139 |
ex/ROOT.ML |
28500 | 140 |
@$(ISABELLE_TOOL) usedir $(OUT)/HOLCF ex |
3081 | 141 |
|
142 |
||
11350
4c55b020d6ee
added FOCUS including the One-Element Buffer by Manfred Broy
oheimb
parents:
8602
diff
changeset
|
143 |
## HOLCF-FOCUS |
4c55b020d6ee
added FOCUS including the One-Element Buffer by Manfred Broy
oheimb
parents:
8602
diff
changeset
|
144 |
|
4c55b020d6ee
added FOCUS including the One-Element Buffer by Manfred Broy
oheimb
parents:
8602
diff
changeset
|
145 |
HOLCF-FOCUS: HOLCF $(LOG)/HOLCF-FOCUS.gz |
4c55b020d6ee
added FOCUS including the One-Element Buffer by Manfred Broy
oheimb
parents:
8602
diff
changeset
|
146 |
|
35214 | 147 |
$(LOG)/HOLCF-FOCUS.gz: $(OUT)/HOLCF \ |
37110
7ffdbc24b27f
move Strict_Fun and Stream theories to new HOLCF/Library directory; add HOLCF/Library to search path
huffman
parents:
37109
diff
changeset
|
148 |
Library/Stream.thy \ |
35214 | 149 |
FOCUS/Fstreams.thy \ |
19759 | 150 |
FOCUS/Fstream.thy FOCUS/FOCUS.thy \ |
151 |
FOCUS/Stream_adm.thy ../HOL/Library/Continuity.thy \ |
|
152 |
FOCUS/Buffer.thy FOCUS/Buffer_adm.thy |
|
28500 | 153 |
@$(ISABELLE_TOOL) usedir $(OUT)/HOLCF FOCUS |
11350
4c55b020d6ee
added FOCUS including the One-Element Buffer by Manfred Broy
oheimb
parents:
8602
diff
changeset
|
154 |
|
4518 | 155 |
## IOA |
156 |
||
157 |
IOA: HOLCF $(OUT)/IOA |
|
158 |
||
19741 | 159 |
$(OUT)/IOA: $(OUT)/HOLCF IOA/ROOT.ML IOA/meta_theory/Traces.thy \ |
160 |
IOA/meta_theory/Asig.thy IOA/meta_theory/CompoScheds.thy \ |
|
161 |
IOA/meta_theory/CompoTraces.thy IOA/meta_theory/Seq.thy \ |
|
162 |
IOA/meta_theory/RefCorrectness.thy IOA/meta_theory/Automata.thy \ |
|
163 |
IOA/meta_theory/ShortExecutions.thy IOA/meta_theory/IOA.thy \ |
|
164 |
IOA/meta_theory/Sequence.thy IOA/meta_theory/CompoExecs.thy \ |
|
165 |
IOA/meta_theory/RefMappings.thy IOA/meta_theory/Compositionality.thy \ |
|
166 |
IOA/meta_theory/TL.thy IOA/meta_theory/TLS.thy \ |
|
167 |
IOA/meta_theory/LiveIOA.thy IOA/meta_theory/Pred.thy \ |
|
168 |
IOA/meta_theory/Abstraction.thy IOA/meta_theory/Simulations.thy \ |
|
37785 | 169 |
IOA/meta_theory/SimCorrectness.thy |
28500 | 170 |
@cd IOA; $(ISABELLE_TOOL) usedir -b $(OUT)/HOLCF IOA |
3081 | 171 |
|
172 |
||
4518 | 173 |
## IOA-ABP |
174 |
||
175 |
IOA-ABP: IOA $(LOG)/IOA-ABP.gz |
|
3081 | 176 |
|
4518 | 177 |
$(LOG)/IOA-ABP.gz: $(OUT)/IOA IOA/ABP/Abschannel.thy \ |
8602
f077613e8e7b
mods because of weak_case_cong -> removed Action.ML twice
nipkow
parents:
6475
diff
changeset
|
178 |
IOA/ABP/Abschannel_finite.thy IOA/ABP/Action.thy \ |
19738 | 179 |
IOA/ABP/Check.ML IOA/ABP/Correctness.thy \ |
4518 | 180 |
IOA/ABP/Env.thy IOA/ABP/Impl.thy IOA/ABP/Impl_finite.thy \ |
19738 | 181 |
IOA/ABP/Lemmas.thy IOA/ABP/Packet.thy \ |
4518 | 182 |
IOA/ABP/ROOT.ML IOA/ABP/Receiver.thy IOA/ABP/Sender.thy \ |
183 |
IOA/ABP/Spec.thy |
|
28500 | 184 |
@cd IOA; $(ISABELLE_TOOL) usedir $(OUT)/IOA ABP |
3081 | 185 |
|
4518 | 186 |
## IOA-NTP |
187 |
||
188 |
IOA-NTP: IOA $(LOG)/IOA-NTP.gz |
|
189 |
||
19739 | 190 |
$(LOG)/IOA-NTP.gz: $(OUT)/IOA \ |
191 |
IOA/NTP/Abschannel.thy IOA/NTP/Action.thy IOA/NTP/Correctness.thy \ |
|
192 |
IOA/NTP/Impl.thy IOA/NTP/Lemmas.thy IOA/NTP/Multiset.thy \ |
|
193 |
IOA/NTP/Packet.thy IOA/NTP/ROOT.ML IOA/NTP/Receiver.thy IOA/NTP/Sender.thy \ |
|
4518 | 194 |
IOA/NTP/Spec.thy |
28500 | 195 |
@cd IOA; $(ISABELLE_TOOL) usedir $(OUT)/IOA NTP |
3081 | 196 |
|
3951 | 197 |
|
6010 | 198 |
## IOA-Storage |
199 |
||
200 |
IOA-Storage: IOA $(LOG)/IOA-Storage.gz |
|
201 |
||
19740 | 202 |
$(LOG)/IOA-Storage.gz: $(OUT)/IOA IOA/Storage/Action.thy \ |
17238
b1cf9189104e
removed IOA/Storage/Impl.ML, IOA/Storage/Action.ML;
wenzelm
parents:
16698
diff
changeset
|
203 |
IOA/Storage/Correctness.thy IOA/Storage/Impl.thy \ |
6011 | 204 |
IOA/Storage/ROOT.ML IOA/Storage/Spec.thy |
28500 | 205 |
@cd IOA; $(ISABELLE_TOOL) usedir $(OUT)/IOA Storage |
6010 | 206 |
|
207 |
||
6475 | 208 |
## IOA-ex |
209 |
||
210 |
IOA-ex: IOA $(LOG)/IOA-ex.gz |
|
211 |
||
19740 | 212 |
$(LOG)/IOA-ex.gz: $(OUT)/IOA IOA/ex/ROOT.ML IOA/ex/TrivEx.thy IOA/ex/TrivEx2.thy |
28500 | 213 |
@cd IOA; $(ISABELLE_TOOL) usedir $(OUT)/IOA ex |
6475 | 214 |
|
215 |
||
4518 | 216 |
## clean |
4447 | 217 |
|
218 |
clean: |
|
33450 | 219 |
@rm -f $(OUT)/HOLCF $(LOG)/HOLCF.gz $(LOG)/HOLCF-IMP.gz \ |
220 |
$(LOG)/HOLCF-ex.gz $(LOG)/HOLCF-FOCUS.gz $(OUT)/IOA \ |
|
221 |
$(LOG)/IOA.gz $(LOG)/IOA-ABP.gz $(LOG)/IOA-NTP.gz \ |
|
37779
982b0668dcbd
removed old HOL/HOLCF-Modelcheck setup, which has been unused/untested for many years;
wenzelm
parents:
37119
diff
changeset
|
222 |
$(LOG)/IOA-Storage.gz $(LOG)/HOLCF-Library.gz \ |
37000
41a22e7c1145
move some example files into new HOLCF/Tutorial directory
huffman
parents:
35932
diff
changeset
|
223 |
$(LOG)/IOA-ex.gz $(LOG)/HOLCF-Tutorial.gz |