author | wenzelm |
Thu, 11 Feb 1999 15:30:10 +0100 | |
changeset 6269 | dbb48b0744d3 |
parent 6221 | ef938c8ef653 |
child 6315 | ed71bedf6976 |
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 |
|
6184 | 26 |
$(OUT)/Pure: General/ROOT.ML General/file.ML General/graph.ML \ |
27 |
General/history.ML General/name_space.ML General/object.ML \ |
|
28 |
General/path.ML General/position.ML General/pretty.ML \ |
|
29 |
General/scan.ML General/seq.ML General/source.ML General/symbol.ML \ |
|
6221 | 30 |
General/table.ML Isar/ROOT.ML Isar/args.ML \ |
6184 | 31 |
Isar/attrib.ML Isar/isar.ML Isar/isar_cmd.ML Isar/isar_syn.ML \ |
32 |
Isar/isar_thy.ML Isar/method.ML Isar/outer_lex.ML \ |
|
5948 | 33 |
Isar/outer_parse.ML Isar/outer_syntax.ML Isar/proof.ML \ |
34 |
Isar/proof_context.ML Isar/proof_data.ML Isar/proof_history.ML \ |
|
6184 | 35 |
Isar/toplevel.ML ML-Systems/mlworks.ML ML-Systems/polyml.ML \ |
36 |
ML-Systems/smlnj-0.93.ML ML-Systems/smlnj.ML ROOT.ML Syntax/ROOT.ML \ |
|
5948 | 37 |
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
|
38 |
Syntax/printer.ML Syntax/syn_ext.ML Syntax/syn_trans.ML \ |
6177 | 39 |
Syntax/syntax.ML Syntax/token_trans.ML Syntax/type_ext.ML \ |
6184 | 40 |
Thy/ROOT.ML Thy/present.ML Thy/session.ML Thy/thm_database.ML \ |
41 |
Thy/thy_info.ML Thy/thy_load.ML Thy/thy_parse.ML Thy/thy_scan.ML \ |
|
42 |
Thy/thy_syn.ML axclass.ML basis.ML context.ML deriv.ML display.ML \ |
|
6083 | 43 |
drule.ML envir.ML goals.ML install_pp.ML library.ML locale.ML \ |
44 |
logic.ML net.ML object_logic.ML pattern.ML pure.ML pure_thy.ML \ |
|
45 |
search.ML sign.ML sorts.ML tactic.ML tctical.ML term.ML theory.ML \ |
|
46 |
theory_data.ML thm.ML type.ML type_infer.ML unify.ML |
|
2431 | 47 |
@./mk |
48 |
||
4518 | 49 |
|
50 |
## RAW |
|
51 |
||
52 |
RAW: |
|
3774 | 53 |
@./mk -r |
54 |
||
4518 | 55 |
|
56 |
## clean |
|
4441 | 57 |
|
58 |
clean: |
|
4518 | 59 |
@rm -f $(OUT)/Pure $(LOG)/Pure.gz $(OUT)/RAW $(LOG)/RAW.gz |