author | paulson |
Tue, 03 Sep 1996 18:30:15 +0200 | |
changeset 1944 | ea0f573b222b |
parent 1491 | 38a14548baad |
child 2023 | aa25f20c5d8b |
permissions | -rw-r--r-- |
1296 | 1 |
# $Id$ |
0 | 2 |
######################################################################### |
3 |
# # |
|
4 |
# Makefile for Isabelle (Cube) # |
|
5 |
# # |
|
6 |
######################################################################### |
|
7 |
||
8 |
#To make the system, cd to this directory and type |
|
9 |
# make |
|
10 |
#To make the system and test it on standard examples, type |
|
11 |
# make test |
|
1296 | 12 |
#To generate HTML files for every theory, set the environment variable |
13 |
#MAKE_HTML or add the parameter "MAKE_HTML=". |
|
0 | 14 |
|
15 |
#Environment variable ISABELLECOMP specifies the compiler. |
|
16 |
#Environment variable ISABELLEBIN specifies the destination directory. |
|
17 |
#For Poly/ML, ISABELLEBIN must begin with a / |
|
18 |
#WARNING: Poly/ML databases may fail if copied or moved! |
|
19 |
||
20 |
#Makes pure Isabelle (Pure) if this file is ABSENT -- but not |
|
21 |
#if it is out of date, since this Makefile does not know its dependencies! |
|
22 |
||
23 |
BIN = $(ISABELLEBIN) |
|
24 |
COMP = $(ISABELLECOMP) |
|
335 | 25 |
FILES = ROOT.ML Cube.thy Cube.ML |
0 | 26 |
|
27 |
$(BIN)/Cube: $(BIN)/Pure $(FILES) |
|
28 |
case "$(COMP)" in \ |
|
29 |
poly*) echo 'make_database"$(BIN)/Cube"; quit();' \ |
|
30 |
| $(COMP) $(BIN)/Pure;\ |
|
1491 | 31 |
if [ "$${MAKE_HTML}" = "true" ]; \ |
1361 | 32 |
then echo 'open PolyML; make_html := true; exit_use_dir".";' \ |
1296 | 33 |
| $(COMP) $(BIN)/Cube;\ |
1491 | 34 |
elif [ "$${MAKE_HTML-undefined}" != "undefined" ]; \ |
35 |
then echo 'open PolyML; make_html := true; exit_use_dir"."; make_html := false;' | $(COMP) $(BIN)/Cube;\ |
|
36 |
else echo 'open PolyML; exit_use_dir".";' \ |
|
1296 | 37 |
| $(COMP) $(BIN)/Cube;\ |
38 |
fi;;\ |
|
1491 | 39 |
sml*) if [ "$${MAKE_HTML}" = "true" ]; \ |
1361 | 40 |
then echo 'make_html := true; exit_use_dir"."; xML"$(BIN)/Cube" banner;' | $(BIN)/Pure;\ |
1491 | 41 |
elif [ "$${MAKE_HTML-undefined}" != "undefined" ];\ |
42 |
then echo 'make_html := true; exit_use_dir"."; make_html := false; xML"$(BIN)/Cube" banner;' \ |
|
43 |
| $(BIN)/Pure;\ |
|
1361 | 44 |
else echo 'exit_use_dir"."; xML"$(BIN)/Cube" banner;' \ |
1296 | 45 |
| $(BIN)/Pure;\ |
46 |
fi;;\ |
|
468 | 47 |
*) echo Bad value for ISABELLECOMP: \ |
48 |
$(COMP) is not poly or sml;;\ |
|
0 | 49 |
esac |
50 |
||
51 |
$(BIN)/Pure: |
|
52 |
cd ../Pure; $(MAKE) |
|
53 |
||
54 |
test: ex.ML $(BIN)/Cube |
|
55 |
case "$(COMP)" in \ |
|
953
17d7fad9c9a2
Now calls exit_use instead of use, for prompt failure if errors are detected.
lcp
parents:
468
diff
changeset
|
56 |
poly*) echo 'exit_use"ex.ML"; quit();' | $(COMP) $(BIN)/Cube ;;\ |
17d7fad9c9a2
Now calls exit_use instead of use, for prompt failure if errors are detected.
lcp
parents:
468
diff
changeset
|
57 |
sml*) echo 'exit_use"ex.ML";' | $(BIN)/Cube;;\ |
468 | 58 |
*) echo Bad value for ISABELLECOMP: \ |
59 |
$(COMP) is not poly or sml;;\ |
|
0 | 60 |
esac |
61 |
||
62 |
.PRECIOUS: $(BIN)/Pure $(BIN)/Cube |