author | wenzelm |
Fri, 21 May 1999 16:23:18 +0200 | |
changeset 6693 | fec75b36a809 |
parent 6638 | 731b4aec2fd6 |
child 6770 | 7eb14a4047e3 |
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 |
|
6315 | 26 |
$(OUT)/Pure: General/ROOT.ML General/buffer.ML General/file.ML \ |
27 |
General/graph.ML General/history.ML General/name_space.ML \ |
|
28 |
General/object.ML General/path.ML General/position.ML \ |
|
29 |
General/pretty.ML General/scan.ML General/seq.ML General/source.ML \ |
|
6693
fec75b36a809
added Interface/ROOT.ML Interface/isamode.ML Interface/proof_general.ML;
wenzelm
parents:
6638
diff
changeset
|
30 |
General/symbol.ML General/table.ML General/url.ML Interface/ROOT.ML \ |
fec75b36a809
added Interface/ROOT.ML Interface/isamode.ML Interface/proof_general.ML;
wenzelm
parents:
6638
diff
changeset
|
31 |
Interface/isamode.ML Interface/proof_general.ML Isar/ROOT.ML \ |
6638 | 32 |
Isar/args.ML Isar/attrib.ML Isar/comment.ML Isar/isar.ML \ |
33 |
Isar/isar_cmd.ML Isar/isar_syn.ML Isar/isar_thy.ML Isar/method.ML \ |
|
34 |
Isar/outer_lex.ML Isar/outer_parse.ML Isar/outer_syntax.ML \ |
|
35 |
Isar/proof.ML Isar/proof_context.ML Isar/proof_data.ML \ |
|
36 |
Isar/proof_history.ML Isar/session.ML Isar/toplevel.ML \ |
|
37 |
ML-Systems/mlworks.ML ML-Systems/polyml.ML ML-Systems/smlnj-0.93.ML \ |
|
38 |
ML-Systems/smlnj.ML ROOT.ML Syntax/ROOT.ML Syntax/ast.ML \ |
|
39 |
Syntax/lexicon.ML Syntax/mixfix.ML Syntax/parser.ML \ |
|
40 |
Syntax/printer.ML Syntax/syn_ext.ML Syntax/syn_trans.ML \ |
|
41 |
Syntax/syntax.ML Syntax/token_trans.ML Syntax/type_ext.ML \ |
|
42 |
Thy/ROOT.ML Thy/browser_info.ML Thy/html.ML Thy/present.ML \ |
|
43 |
Thy/thm_database.ML Thy/thy_info.ML Thy/thy_load.ML Thy/thy_parse.ML \ |
|
44 |
Thy/thy_scan.ML Thy/thy_syn.ML axclass.ML basis.ML context.ML \ |
|
45 |
deriv.ML display.ML drule.ML envir.ML goals.ML install_pp.ML \ |
|
46 |
library.ML locale.ML logic.ML net.ML object_logic.ML pattern.ML \ |
|
47 |
pure.ML pure_thy.ML search.ML sign.ML sorts.ML tactic.ML tctical.ML \ |
|
48 |
term.ML theory.ML theory_data.ML thm.ML type.ML type_infer.ML \ |
|
49 |
unify.ML |
|
2431 | 50 |
@./mk |
51 |
||
4518 | 52 |
|
53 |
## RAW |
|
54 |
||
55 |
RAW: |
|
3774 | 56 |
@./mk -r |
57 |
||
4518 | 58 |
|
59 |
## clean |
|
4441 | 60 |
|
61 |
clean: |
|
4518 | 62 |
@rm -f $(OUT)/Pure $(LOG)/Pure.gz $(OUT)/RAW $(LOG)/RAW.gz |