author | wenzelm |
Mon, 18 Jan 1999 21:08:27 +0100 | |
changeset 6134 | ec6092b0599d |
parent 6116 | 8ba2f25610f7 |
child 6177 | 51113cb0ed87 |
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 |
|
6134 | 26 |
$(OUT)/Pure: General/ROOT.ML General/file.ML General/graph.ML General/history.ML \ |
5040 | 27 |
General/name_space.ML General/object.ML General/path.ML \ |
6116
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
6083
diff
changeset
|
28 |
General/position.ML General/pretty.ML General/scan.ML General/seq.ML \ |
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
6083
diff
changeset
|
29 |
General/source.ML General/symbol.ML General/table.ML Isar/ROOT.ML \ |
5948 | 30 |
Isar/args.ML Isar/attrib.ML Isar/isar.ML Isar/isar_cmd.ML \ |
31 |
Isar/isar_syn.ML Isar/isar_thy.ML Isar/method.ML Isar/outer_lex.ML \ |
|
32 |
Isar/outer_parse.ML Isar/outer_syntax.ML Isar/proof.ML \ |
|
33 |
Isar/proof_context.ML Isar/proof_data.ML Isar/proof_history.ML \ |
|
34 |
Isar/toplevel.ML ML-Systems/mlworks.ML ML-Systems/polyml.ML \ |
|
35 |
ML-Systems/smlnj-0.93.ML ML-Systems/smlnj.ML ROOT.ML Syntax/ROOT.ML \ |
|
36 |
Syntax/ast.ML Syntax/lexicon.ML Syntax/mixfix.ML Syntax/parser.ML \ |
|
6116
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
6083
diff
changeset
|
37 |
Syntax/printer.ML Syntax/syn_ext.ML Syntax/syn_trans.ML \ |
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
6083
diff
changeset
|
38 |
Syntax/syntax.ML Syntax/token_trans.ML Syntax/type_ext.ML Thy/ROOT.ML \ |
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
6083
diff
changeset
|
39 |
Thy/browser_info.ML Thy/context.ML Thy/thm_database.ML Thy/thy_info.ML \ |
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
6083
diff
changeset
|
40 |
Thy/thy_parse.ML Thy/thy_read.ML Thy/thy_scan.ML Thy/thy_syn.ML \ |
8ba2f25610f7
files scan.ML, source.ML, symbol.ML, pretty.ML moved to Pure/General;
wenzelm
parents:
6083
diff
changeset
|
41 |
Thy/use.ML axclass.ML basis.ML deriv.ML display.ML \ |
6083 | 42 |
drule.ML envir.ML goals.ML install_pp.ML library.ML locale.ML \ |
43 |
logic.ML net.ML object_logic.ML pattern.ML pure.ML pure_thy.ML \ |
|
44 |
search.ML sign.ML sorts.ML tactic.ML tctical.ML term.ML theory.ML \ |
|
45 |
theory_data.ML thm.ML type.ML type_infer.ML unify.ML |
|
2431 | 46 |
@./mk |
47 |
||
4518 | 48 |
|
49 |
## RAW |
|
50 |
||
51 |
RAW: |
|
3774 | 52 |
@./mk -r |
53 |
||
4518 | 54 |
|
55 |
## clean |
|
4441 | 56 |
|
57 |
clean: |
|
4518 | 58 |
@rm -f $(OUT)/Pure $(LOG)/Pure.gz $(OUT)/RAW $(LOG)/RAW.gz |