author | wenzelm |
Sat, 06 Feb 2010 22:54:53 +0100 | |
changeset 35017 | 603d976d8cab |
parent 35014 | a725ff6ead26 |
child 35626 | 06197484c6ad |
permissions | -rw-r--r-- |
2431 | 1 |
# |
4518 | 2 |
# IsaMakefile for Pure |
2431 | 3 |
# |
4 |
||
4518 | 5 |
## targets |
6 |
||
7 |
default: Pure |
|
8 |
images: Pure |
|
24880
c827d25b2983
added Pure-ProofGeneral target (dummy session with outer syntax keyword initialization);
wenzelm
parents:
24830
diff
changeset
|
9 |
test: RAW Pure-ProofGeneral |
4518 | 10 |
all: images test |
11 |
||
12 |
||
13 |
## global settings |
|
14 |
||
31702 | 15 |
SHELL = /bin/bash |
16 |
||
4518 | 17 |
SRC = $(ISABELLE_HOME)/src |
3118 | 18 |
OUT = $(ISABELLE_OUTPUT) |
4518 | 19 |
LOG = $(OUT)/log |
20 |
||
2431 | 21 |
|
4518 | 22 |
## Pure |
23 |
||
35010
d6e492cea6e4
renamed system/system_out to bash/bash_output -- to emphasized that this is really GNU bash, not some undefined POSIX sh;
wenzelm
parents:
34282
diff
changeset
|
24 |
BOOTSTRAP_FILES = ML-Systems/bash.ML ML-Systems/compiler_polyml-5.0.ML \ |
31312 | 25 |
ML-Systems/compiler_polyml-5.2.ML ML-Systems/compiler_polyml-5.3.ML \ |
35010
d6e492cea6e4
renamed system/system_out to bash/bash_output -- to emphasized that this is really GNU bash, not some undefined POSIX sh;
wenzelm
parents:
34282
diff
changeset
|
26 |
ML-Systems/ml_name_space.ML ML-Systems/ml_pretty.ML \ |
35017
603d976d8cab
removed ever experimental support for Moscow ML -- hardly works anymore;
wenzelm
parents:
35014
diff
changeset
|
27 |
ML-Systems/multithreading.ML ML-Systems/multithreading_polyml.ML \ |
603d976d8cab
removed ever experimental support for Moscow ML -- hardly works anymore;
wenzelm
parents:
35014
diff
changeset
|
28 |
ML-Systems/overloading_smlnj.ML ML-Systems/polyml-5.0.ML \ |
603d976d8cab
removed ever experimental support for Moscow ML -- hardly works anymore;
wenzelm
parents:
35014
diff
changeset
|
29 |
ML-Systems/polyml-5.1.ML ML-Systems/polyml-5.2.ML \ |
603d976d8cab
removed ever experimental support for Moscow ML -- hardly works anymore;
wenzelm
parents:
35014
diff
changeset
|
30 |
ML-Systems/polyml-5.2.1.ML ML-Systems/polyml.ML \ |
603d976d8cab
removed ever experimental support for Moscow ML -- hardly works anymore;
wenzelm
parents:
35014
diff
changeset
|
31 |
ML-Systems/polyml_common.ML ML-Systems/pp_polyml.ML \ |
603d976d8cab
removed ever experimental support for Moscow ML -- hardly works anymore;
wenzelm
parents:
35014
diff
changeset
|
32 |
ML-Systems/proper_int.ML ML-Systems/single_assignment.ML \ |
35014
a725ff6ead26
explicit representation of single-assignment variables;
wenzelm
parents:
35010
diff
changeset
|
33 |
ML-Systems/single_assignment_polyml.ML ML-Systems/smlnj.ML \ |
35010
d6e492cea6e4
renamed system/system_out to bash/bash_output -- to emphasized that this is really GNU bash, not some undefined POSIX sh;
wenzelm
parents:
34282
diff
changeset
|
34 |
ML-Systems/thread_dummy.ML ML-Systems/timing.ML \ |
d6e492cea6e4
renamed system/system_out to bash/bash_output -- to emphasized that this is really GNU bash, not some undefined POSIX sh;
wenzelm
parents:
34282
diff
changeset
|
35 |
ML-Systems/time_limit.ML ML-Systems/universal.ML \ |
d6e492cea6e4
renamed system/system_out to bash/bash_output -- to emphasized that this is really GNU bash, not some undefined POSIX sh;
wenzelm
parents:
34282
diff
changeset
|
36 |
ML-Systems/unsynchronized.ML |
30141 | 37 |
|
38 |
RAW: $(OUT)/RAW |
|
39 |
||
40 |
$(OUT)/RAW: $(BOOTSTRAP_FILES) |
|
41 |
@./mk -r |
|
42 |
||
43 |
||
27204 | 44 |
Pure: $(OUT)/Pure |
2431 | 45 |
|
32840 | 46 |
$(OUT)/Pure: $(BOOTSTRAP_FILES) Concurrent/cache.ML \ |
47 |
Concurrent/future.ML Concurrent/lazy.ML \ |
|
48 |
Concurrent/lazy_sequential.ML Concurrent/mailbox.ML \ |
|
49 |
Concurrent/par_list.ML Concurrent/par_list_sequential.ML \ |
|
35014
a725ff6ead26
explicit representation of single-assignment variables;
wenzelm
parents:
35010
diff
changeset
|
50 |
Concurrent/simple_thread.ML Concurrent/single_assignment.ML \ |
a725ff6ead26
explicit representation of single-assignment variables;
wenzelm
parents:
35010
diff
changeset
|
51 |
Concurrent/single_assignment_sequential.ML \ |
a725ff6ead26
explicit representation of single-assignment variables;
wenzelm
parents:
35010
diff
changeset
|
52 |
Concurrent/synchronized.ML Concurrent/synchronized_sequential.ML \ |
a725ff6ead26
explicit representation of single-assignment variables;
wenzelm
parents:
35010
diff
changeset
|
53 |
Concurrent/task_queue.ML General/alist.ML General/antiquote.ML \ |
a725ff6ead26
explicit representation of single-assignment variables;
wenzelm
parents:
35010
diff
changeset
|
54 |
General/balanced_tree.ML General/basics.ML General/binding.ML \ |
a725ff6ead26
explicit representation of single-assignment variables;
wenzelm
parents:
35010
diff
changeset
|
55 |
General/buffer.ML General/exn.ML General/file.ML General/graph.ML \ |
a725ff6ead26
explicit representation of single-assignment variables;
wenzelm
parents:
35010
diff
changeset
|
56 |
General/heap.ML General/integer.ML General/long_name.ML \ |
a725ff6ead26
explicit representation of single-assignment variables;
wenzelm
parents:
35010
diff
changeset
|
57 |
General/markup.ML General/name_space.ML General/ord_list.ML \ |
a725ff6ead26
explicit representation of single-assignment variables;
wenzelm
parents:
35010
diff
changeset
|
58 |
General/output.ML General/path.ML General/position.ML \ |
a725ff6ead26
explicit representation of single-assignment variables;
wenzelm
parents:
35010
diff
changeset
|
59 |
General/pretty.ML General/print_mode.ML General/properties.ML \ |
a725ff6ead26
explicit representation of single-assignment variables;
wenzelm
parents:
35010
diff
changeset
|
60 |
General/queue.ML General/same.ML General/scan.ML General/secure.ML \ |
a725ff6ead26
explicit representation of single-assignment variables;
wenzelm
parents:
35010
diff
changeset
|
61 |
General/seq.ML General/source.ML General/stack.ML General/symbol.ML \ |
34136 | 62 |
General/symbol_pos.ML General/table.ML General/url.ML General/xml.ML \ |
63 |
General/yxml.ML Isar/args.ML Isar/attrib.ML Isar/auto_bind.ML \ |
|
64 |
Isar/calculation.ML Isar/class.ML Isar/class_target.ML Isar/code.ML \ |
|
65 |
Isar/constdefs.ML Isar/context_rules.ML Isar/element.ML \ |
|
66 |
Isar/expression.ML Isar/isar_cmd.ML Isar/isar_document.ML \ |
|
67 |
Isar/isar_syn.ML Isar/local_defs.ML Isar/local_syntax.ML \ |
|
68 |
Isar/local_theory.ML Isar/locale.ML Isar/method.ML \ |
|
69 |
Isar/object_logic.ML Isar/obtain.ML Isar/outer_keyword.ML \ |
|
70 |
Isar/outer_lex.ML Isar/outer_parse.ML Isar/outer_syntax.ML \ |
|
71 |
Isar/overloading.ML Isar/proof.ML Isar/proof_context.ML \ |
|
72 |
Isar/proof_display.ML Isar/proof_node.ML Isar/rule_cases.ML \ |
|
73 |
Isar/rule_insts.ML Isar/runtime.ML Isar/skip_proof.ML \ |
|
74 |
Isar/spec_parse.ML Isar/spec_rules.ML Isar/specification.ML \ |
|
75 |
Isar/theory_target.ML Isar/toplevel.ML Isar/value_parse.ML \ |
|
76 |
ML/ml_antiquote.ML ML/ml_compiler.ML ML/ml_compiler_polyml-5.3.ML \ |
|
77 |
ML/ml_context.ML ML/ml_env.ML ML/ml_lex.ML ML/ml_parse.ML \ |
|
78 |
ML/ml_syntax.ML ML/ml_thms.ML ML-Systems/install_pp_polyml.ML \ |
|
79 |
ML-Systems/install_pp_polyml-5.3.ML ML-Systems/use_context.ML \ |
|
80 |
Proof/extraction.ML Proof/proof_rewrite_rules.ML \ |
|
81 |
Proof/proof_syntax.ML Proof/proofchecker.ML Proof/reconstruct.ML \ |
|
82 |
ProofGeneral/pgip.ML ProofGeneral/pgip_input.ML \ |
|
83 |
ProofGeneral/pgip_isabelle.ML ProofGeneral/pgip_markup.ML \ |
|
84 |
ProofGeneral/pgip_output.ML ProofGeneral/pgip_parser.ML \ |
|
85 |
ProofGeneral/pgip_tests.ML ProofGeneral/pgip_types.ML \ |
|
86 |
ProofGeneral/preferences.ML ProofGeneral/proof_general_emacs.ML \ |
|
26097
943582a2d1e2
removed General/system_process.ML (back to multithreaded version);
wenzelm
parents:
26077
diff
changeset
|
87 |
ProofGeneral/proof_general_pgip.ML Pure.thy ROOT.ML Syntax/ast.ML \ |
943582a2d1e2
removed General/system_process.ML (back to multithreaded version);
wenzelm
parents:
26077
diff
changeset
|
88 |
Syntax/lexicon.ML Syntax/mixfix.ML Syntax/parser.ML \ |
943582a2d1e2
removed General/system_process.ML (back to multithreaded version);
wenzelm
parents:
26077
diff
changeset
|
89 |
Syntax/printer.ML Syntax/simple_syntax.ML Syntax/syn_ext.ML \ |
30173
eabece26b89b
moved isabelle_process.ML, isabelle_process.scala, isar.ML, session.ML to Pure/System/ (together with associated Isar commands);
wenzelm
parents:
30142
diff
changeset
|
90 |
Syntax/syn_trans.ML Syntax/syntax.ML Syntax/type_ext.ML \ |
eabece26b89b
moved isabelle_process.ML, isabelle_process.scala, isar.ML, session.ML to Pure/System/ (together with associated Isar commands);
wenzelm
parents:
30142
diff
changeset
|
91 |
System/isabelle_process.ML System/isar.ML System/session.ML \ |
eabece26b89b
moved isabelle_process.ML, isabelle_process.scala, isar.ML, session.ML to Pure/System/ (together with associated Isar commands);
wenzelm
parents:
30142
diff
changeset
|
92 |
Thy/html.ML Thy/latex.ML Thy/present.ML Thy/term_style.ML \ |
eabece26b89b
moved isabelle_process.ML, isabelle_process.scala, isar.ML, session.ML to Pure/System/ (together with associated Isar commands);
wenzelm
parents:
30142
diff
changeset
|
93 |
Thy/thm_deps.ML Thy/thy_header.ML Thy/thy_info.ML Thy/thy_load.ML \ |
31432
9858f32f9569
just one ROOT.ML without any cd or ".." -- simplifies ML environment references to bootstrap sources;
wenzelm
parents:
31333
diff
changeset
|
94 |
Thy/thy_output.ML Thy/thy_syntax.ML Tools/find_consts.ML \ |
9858f32f9569
just one ROOT.ML without any cd or ".." -- simplifies ML environment references to bootstrap sources;
wenzelm
parents:
31333
diff
changeset
|
95 |
Tools/find_theorems.ML Tools/named_thms.ML Tools/xml_syntax.ML \ |
9858f32f9569
just one ROOT.ML without any cd or ".." -- simplifies ML environment references to bootstrap sources;
wenzelm
parents:
31333
diff
changeset
|
96 |
assumption.ML axclass.ML codegen.ML config.ML conjunction.ML \ |
9858f32f9569
just one ROOT.ML without any cd or ".." -- simplifies ML environment references to bootstrap sources;
wenzelm
parents:
31333
diff
changeset
|
97 |
consts.ML context.ML context_position.ML conv.ML defs.ML display.ML \ |
32187 | 98 |
drule.ML envir.ML facts.ML goal.ML goal_display.ML interpretation.ML \ |
32089
568a23753e3a
moved pretty_goals etc. to Display_Goal (required by tracing tacticals);
wenzelm
parents:
32015
diff
changeset
|
99 |
item_net.ML library.ML logic.ML meta_simplifier.ML more_thm.ML \ |
568a23753e3a
moved pretty_goals etc. to Display_Goal (required by tracing tacticals);
wenzelm
parents:
32015
diff
changeset
|
100 |
morphism.ML name.ML net.ML old_goals.ML old_term.ML pattern.ML \ |
568a23753e3a
moved pretty_goals etc. to Display_Goal (required by tracing tacticals);
wenzelm
parents:
32015
diff
changeset
|
101 |
primitive_defs.ML proofterm.ML pure_setup.ML pure_thy.ML search.ML \ |
32169 | 102 |
sign.ML simplifier.ML sorts.ML subgoal.ML tactic.ML tactical.ML \ |
32089
568a23753e3a
moved pretty_goals etc. to Display_Goal (required by tracing tacticals);
wenzelm
parents:
32015
diff
changeset
|
103 |
term.ML term_ord.ML term_subst.ML theory.ML thm.ML type.ML \ |
568a23753e3a
moved pretty_goals etc. to Display_Goal (required by tracing tacticals);
wenzelm
parents:
32015
diff
changeset
|
104 |
type_infer.ML unify.ML variable.ML |
2431 | 105 |
@./mk |
106 |
||
4518 | 107 |
|
30141 | 108 |
## Proof General keywords |
10102 | 109 |
|
24880
c827d25b2983
added Pure-ProofGeneral target (dummy session with outer syntax keyword initialization);
wenzelm
parents:
24830
diff
changeset
|
110 |
Pure-ProofGeneral: Pure $(LOG)/Pure-ProofGeneral.gz |
c827d25b2983
added Pure-ProofGeneral target (dummy session with outer syntax keyword initialization);
wenzelm
parents:
24830
diff
changeset
|
111 |
|
27204 | 112 |
$(LOG)/Pure-ProofGeneral.gz: $(OUT)/Pure ProofGeneral/proof_general_keywords.ML |
28500 | 113 |
@$(ISABELLE_TOOL) usedir -f proof_general_keywords.ML $(OUT)/Pure ProofGeneral |
24880
c827d25b2983
added Pure-ProofGeneral target (dummy session with outer syntax keyword initialization);
wenzelm
parents:
24830
diff
changeset
|
114 |
|
c827d25b2983
added Pure-ProofGeneral target (dummy session with outer syntax keyword initialization);
wenzelm
parents:
24830
diff
changeset
|
115 |
|
4518 | 116 |
## clean |
4441 | 117 |
|
118 |
clean: |
|
30141 | 119 |
@rm -f $(OUT)/Pure $(LOG)/Pure.gz $(OUT)/RAW $(LOG)/RAW.gz \ |
120 |
$(LOG)/Pure-ProofGeneral.gz |