author | berghofe |
Fri, 31 Aug 2001 16:06:21 +0200 | |
changeset 11511 | ec89f5cff390 |
parent 11064 | a4d10c4b2708 |
child 11658 | 4200394242c5 |
permissions | -rw-r--r-- |
2431 | 1 |
# |
4518 | 2 |
# $Id$ |
2431 | 3 |
# |
4518 | 4 |
# IsaMakefile for Pure |
2431 | 5 |
# |
6 |
||
4518 | 7 |
## targets |
8 |
||
9 |
default: Pure |
|
10 |
images: Pure |
|
11 |
test: |
|
12 |
all: images test |
|
13 |
||
14 |
||
15 |
## global settings |
|
16 |
||
17 |
SRC = $(ISABELLE_HOME)/src |
|
3118 | 18 |
OUT = $(ISABELLE_OUTPUT) |
4518 | 19 |
LOG = $(OUT)/log |
20 |
||
2431 | 21 |
|
4518 | 22 |
## Pure |
23 |
||
24 |
Pure: $(OUT)/Pure |
|
2431 | 25 |
|
8298 | 26 |
$(OUT)/Pure: General/ROOT.ML General/buffer.ML General/file.ML \ |
9093 | 27 |
General/graph.ML General/history.ML General/heap.ML General/name_space.ML \ |
8298 | 28 |
General/object.ML General/path.ML General/position.ML \ |
29 |
General/pretty.ML General/scan.ML General/seq.ML General/source.ML \ |
|
30 |
General/symbol.ML General/table.ML General/url.ML Interface/ROOT.ML \ |
|
9125
f85564116be1
added Isar/antiquote.ML, Isar/isar_output.ML, Isar/thy_header.ML;
wenzelm
parents:
9093
diff
changeset
|
31 |
Interface/isamode.ML Interface/proof_general.ML Isar/ROOT.ML Isar/antiquote.ML \ |
8298 | 32 |
Isar/args.ML Isar/attrib.ML Isar/auto_bind.ML Isar/calculation.ML \ |
9125
f85564116be1
added Isar/antiquote.ML, Isar/isar_output.ML, Isar/thy_header.ML;
wenzelm
parents:
9093
diff
changeset
|
33 |
Isar/comment.ML Isar/isar.ML Isar/isar_cmd.ML Isar/isar_output.ML \ |
f85564116be1
added Isar/antiquote.ML, Isar/isar_output.ML, Isar/thy_header.ML;
wenzelm
parents:
9093
diff
changeset
|
34 |
Isar/isar_syn.ML Isar/isar_thy.ML Isar/local_defs.ML Isar/method.ML \ |
f85564116be1
added Isar/antiquote.ML, Isar/isar_output.ML, Isar/thy_header.ML;
wenzelm
parents:
9093
diff
changeset
|
35 |
Isar/net_rules.ML Isar/obtain.ML Isar/outer_lex.ML Isar/outer_parse.ML \ |
8298 | 36 |
Isar/outer_syntax.ML Isar/proof.ML Isar/proof_context.ML \ |
8364 | 37 |
Isar/proof_data.ML Isar/proof_history.ML Isar/rule_cases.ML \ |
9125
f85564116be1
added Isar/antiquote.ML, Isar/isar_output.ML, Isar/thy_header.ML;
wenzelm
parents:
9093
diff
changeset
|
38 |
Isar/session.ML Isar/skip_proof.ML Isar/thy_header.ML Isar/toplevel.ML \ |
11064 | 39 |
ML-Systems/mlworks.ML ML-Systems/polyml.ML ML-Systems/polyml-3.x.ML ML-Systems/smlnj-0.93.ML \ |
8364 | 40 |
ML-Systems/smlnj.ML ROOT.ML Syntax/ROOT.ML Syntax/ast.ML \ |
11511 | 41 |
Proof/ROOT.ML Proof/proofchecker.ML Proof/proof_rewrite_rules.ML \ |
42 |
Proof/proof_syntax.ML Proof/reconstruct.ML \ |
|
8364 | 43 |
Syntax/lexicon.ML Syntax/mixfix.ML Syntax/parser.ML \ |
44 |
Syntax/printer.ML Syntax/syn_ext.ML Syntax/syn_trans.ML \ |
|
45 |
Syntax/syntax.ML Syntax/token_trans.ML Syntax/type_ext.ML \ |
|
46 |
Thy/ROOT.ML Thy/html.ML Thy/latex.ML Thy/present.ML Thy/thm_deps.ML \ |
|
47 |
Thy/thm_database.ML Thy/thy_info.ML Thy/thy_load.ML Thy/thy_parse.ML \ |
|
48 |
Thy/thy_scan.ML Thy/thy_syn.ML axclass.ML basis.ML context.ML \ |
|
11511 | 49 |
codegen.ML display.ML drule.ML envir.ML goals.ML install_pp.ML \ |
50 |
library.ML locale.ML logic.ML meta_simplifier.ML net.ML pattern.ML \ |
|
51 |
proofterm.ML pure.ML pure_thy.ML \ |
|
8364 | 52 |
search.ML sign.ML sorts.ML tactic.ML tctical.ML term.ML theory.ML \ |
53 |
theory_data.ML thm.ML type.ML type_infer.ML unify.ML |
|
2431 | 54 |
@./mk |
55 |
||
4518 | 56 |
|
10102 | 57 |
## special targets |
58 |
||
59 |
Pure-copied: |
|
60 |
@./mk -C |
|
4518 | 61 |
|
62 |
RAW: |
|
3774 | 63 |
@./mk -r |
64 |
||
10102 | 65 |
RAW-copied: |
66 |
@./mk -Cr |
|
67 |
||
4518 | 68 |
|
69 |
## clean |
|
4441 | 70 |
|
71 |
clean: |
|
4518 | 72 |
@rm -f $(OUT)/Pure $(LOG)/Pure.gz $(OUT)/RAW $(LOG)/RAW.gz |