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