| author | clasohm |
| Thu, 04 Nov 1993 14:11:59 +0100 | |
| changeset 90 | a90653dabebc |
| parent 82 | b9ac34abc054 |
| child 92 | 7252e7699e24 |
| permissions | -rw-r--r-- |
| 0 | 1 |
######################################################################### |
2 |
# # |
|
3 |
# Makefile for Isabelle (ZF) # |
|
4 |
# # |
|
5 |
######################################################################### |
|
6 |
||
7 |
#To make the system, cd to this directory and type |
|
8 |
# make -f Makefile |
|
9 |
#To make the system and test it on standard examples, type |
|
10 |
# make -f Makefile test |
|
11 |
||
12 |
#Environment variable ISABELLECOMP specifies the compiler. |
|
13 |
#Environment variable ISABELLEBIN specifies the destination directory. |
|
14 |
#For Poly/ML, ISABELLEBIN must begin with a / |
|
15 |
||
16 |
#Makes FOL if this file is ABSENT -- but not |
|
17 |
#if it is out of date, since this Makefile does not know its dependencies! |
|
18 |
||
19 |
BIN = $(ISABELLEBIN) |
|
20 |
COMP = $(ISABELLECOMP) |
|
21 |
FILES = ROOT.ML zf.thy zf.ML upair.ML subset.ML pair.ML domrange.ML \ |
|
22 |
func.ML simpdata.ML bool.thy bool.ML \ |
|
23 |
sum.thy sum.ML qpair.thy qpair.ML mono.ML fixedpt.thy fixedpt.ML \ |
|
| 90 | 24 |
ind_syntax.ML intr_elim.ML indrule.ML inductive.ML co_inductive.ML \ |
| 0 | 25 |
equalities.ML perm.thy perm.ML trancl.thy trancl.ML \ |
| 52 | 26 |
wf.thy wf.ML ord.thy ord.ML nat.thy nat.ML \ |
| 0 | 27 |
epsilon.thy epsilon.ML arith.thy arith.ML univ.thy univ.ML \ |
28 |
quniv.thy quniv.ML constructor.ML datatype.ML \ |
|
| 33 | 29 |
fin.ML list.ML listfn.thy listfn.ML |
| 0 | 30 |
|
31 |
#Uses cp rather than make_database because Poly/ML allows only 3 levels |
|
32 |
$(BIN)/ZF: $(BIN)/FOL $(FILES) |
|
33 |
case "$(COMP)" in \ |
|
34 |
poly*) cp $(BIN)/FOL $(BIN)/ZF;\ |
|
|
82
b9ac34abc054
no longer specifies "-h 15000". Instead $ISABELLECOMP should
lcp
parents:
75
diff
changeset
|
35 |
echo 'open PolyML; use"ROOT";' | $(COMP) $(BIN)/ZF ;;\ |
| 0 | 36 |
sml*) echo 'use"ROOT.ML"; xML"$(BIN)/ZF" banner;' | $(BIN)/FOL;;\ |
37 |
*) echo Bad value for ISABELLECOMP;;\ |
|
38 |
esac |
|
39 |
||
40 |
$(BIN)/FOL: |
|
41 |
cd ../FOL; $(MAKE) |
|
42 |
||
43 |
test: ex/ROOT.ML $(BIN)/ZF |
|
44 |
case "$(COMP)" in \ |
|
|
82
b9ac34abc054
no longer specifies "-h 15000". Instead $ISABELLECOMP should
lcp
parents:
75
diff
changeset
|
45 |
poly*) echo 'use"ex/ROOT.ML"; quit();' | $(COMP) $(BIN)/ZF ;;\ |
| 0 | 46 |
sml*) echo 'use"ex/ROOT.ML";' | $(BIN)/ZF;;\ |
47 |
*) echo Bad value for ISABELLECOMP;;\ |
|
48 |
esac |
|
49 |
||
50 |
.PRECIOUS: $(BIN)/FOL $(BIN)/ZF |