author | lcp |
Fri, 06 May 1994 15:02:57 +0200 | |
changeset 363 | 1180a3c5479e |
parent 342 | 82104a03565a |
child 435 | ca5356bd315a |
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) |
|
339 | 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 \ |
|
342 | 23 |
Sum.thy Sum.ML QPair.thy QPair.ML mono.ML Fixedpt.thy Fixedpt.ML \ |
92 | 24 |
ind_syntax.ML intr_elim.ML indrule.ML inductive.ML coinductive.ML \ |
339 | 25 |
equalities.ML Perm.thy Perm.ML Trancl.thy Trancl.ML \ |
26 |
WF.thy WF.ML Ord.thy Ord.ML Nat.thy Nat.ML \ |
|
27 |
Epsilon.thy Epsilon.ML Arith.thy Arith.ML Univ.thy Univ.ML \ |
|
342 | 28 |
QUniv.thy QUniv.ML constructor.ML Datatype.ML \ |
363 | 29 |
Fin.ML List.ML ListFn.thy ListFn.ML |
0 | 30 |
|
342 | 31 |
EX_FILES = ex/ROOT.ML ex/Acc.ML ex/Bin.ML ex/BinFn.ML ex/BinFn.thy\ |
32 |
ex/BT.ML ex/BT_Fn.ML ex/BT_Fn.thy ex/Comb.ML\ |
|
363 | 33 |
ex/Contract0.ML ex/Contract0.thy ex/CoUnit.ML ex/Data.ML\ |
342 | 34 |
ex/Enum.ML ex/Equiv.ML ex/Equiv.thy ex/Integ.ML ex/Integ.thy\ |
363 | 35 |
ex/ListN.ML ex/LList.ML ex/LList_Eq.ML ex/LListFn.ML ex/LListFn.thy\ |
342 | 36 |
ex/misc.ML ex/ParContract.ML ex/Primrec0.ML ex/Primrec0.thy\ |
37 |
ex/Prop.ML ex/PropLog.ML ex/PropLog.thy ex/Ramsey.ML ex/Ramsey.thy\ |
|
38 |
ex/Rmap.ML ex/Term.ML ex/TermFn.ML ex/TermFn.thy ex/TF.ML\ |
|
339 | 39 |
ex/TF_Fn.ML ex/TF_Fn.thy ex/twos_compl.ML |
102 | 40 |
|
0 | 41 |
#Uses cp rather than make_database because Poly/ML allows only 3 levels |
42 |
$(BIN)/ZF: $(BIN)/FOL $(FILES) |
|
43 |
case "$(COMP)" in \ |
|
44 |
poly*) cp $(BIN)/FOL $(BIN)/ZF;\ |
|
82
b9ac34abc054
no longer specifies "-h 15000". Instead $ISABELLECOMP should
lcp
parents:
75
diff
changeset
|
45 |
echo 'open PolyML; use"ROOT";' | $(COMP) $(BIN)/ZF ;;\ |
0 | 46 |
sml*) echo 'use"ROOT.ML"; xML"$(BIN)/ZF" banner;' | $(BIN)/FOL;;\ |
47 |
*) echo Bad value for ISABELLECOMP;;\ |
|
48 |
esac |
|
49 |
||
50 |
$(BIN)/FOL: |
|
51 |
cd ../FOL; $(MAKE) |
|
52 |
||
102 | 53 |
test: ex/ROOT.ML $(BIN)/ZF $(EX_FILES) |
0 | 54 |
case "$(COMP)" in \ |
82
b9ac34abc054
no longer specifies "-h 15000". Instead $ISABELLECOMP should
lcp
parents:
75
diff
changeset
|
55 |
poly*) echo 'use"ex/ROOT.ML"; quit();' | $(COMP) $(BIN)/ZF ;;\ |
0 | 56 |
sml*) echo 'use"ex/ROOT.ML";' | $(BIN)/ZF;;\ |
57 |
*) echo Bad value for ISABELLECOMP;;\ |
|
58 |
esac |
|
59 |
||
60 |
.PRECIOUS: $(BIN)/FOL $(BIN)/ZF |