src/Cube/Makefile
author clasohm
Tue, 21 Nov 1995 15:10:12 +0100
changeset 1361 90d615b599d9
parent 1296 ae31bb7774a7
child 1491 38a14548baad
permissions -rw-r--r--
main directory is now read by exit_use_dir, too; removed make_chart from ROOT.ML
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1296
ae31bb7774a7 added calls of init_html and make_chart
clasohm
parents: 953
diff changeset
     1
# $Id$
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     2
#########################################################################
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     3
#									#
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     4
# 			Makefile for Isabelle (Cube)			#
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     5
#									#
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     6
#########################################################################
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     7
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     8
#To make the system, cd to this directory and type  
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
     9
#	make 
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    10
#To make the system and test it on standard examples, type  
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    11
#	make test
1296
ae31bb7774a7 added calls of init_html and make_chart
clasohm
parents: 953
diff changeset
    12
#To generate HTML files for every theory, set the environment variable
ae31bb7774a7 added calls of init_html and make_chart
clasohm
parents: 953
diff changeset
    13
#MAKE_HTML or add the parameter "MAKE_HTML=".
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    14
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    15
#Environment variable ISABELLECOMP specifies the compiler.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    16
#Environment variable ISABELLEBIN specifies the destination directory.
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    17
#For Poly/ML, ISABELLEBIN must begin with a /
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    18
#WARNING: Poly/ML databases may fail if copied or moved!
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    19
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    20
#Makes pure Isabelle (Pure) if this file is ABSENT -- but not 
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    21
#if it is out of date, since this Makefile does not know its dependencies!
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    22
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    23
BIN = $(ISABELLEBIN)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    24
COMP = $(ISABELLECOMP)
335
5623ca25803f renamed theory files
clasohm
parents: 101
diff changeset
    25
FILES = 	ROOT.ML  Cube.thy  Cube.ML
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    26
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    27
$(BIN)/Cube:   $(BIN)/Pure  $(FILES) 
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    28
	case "$(COMP)" in \
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    29
	poly*)	echo 'make_database"$(BIN)/Cube"; quit();'  \
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    30
			| $(COMP) $(BIN)/Pure;\
1296
ae31bb7774a7 added calls of init_html and make_chart
clasohm
parents: 953
diff changeset
    31
                if [ "$${MAKE_HTML-undefined}" != "undefined" ]; \
1361
90d615b599d9 main directory is now read by exit_use_dir, too;
clasohm
parents: 1296
diff changeset
    32
                then echo 'open PolyML; make_html := true; exit_use_dir".";' \
1296
ae31bb7774a7 added calls of init_html and make_chart
clasohm
parents: 953
diff changeset
    33
                       | $(COMP) $(BIN)/Cube;\
1361
90d615b599d9 main directory is now read by exit_use_dir, too;
clasohm
parents: 1296
diff changeset
    34
		else echo 'open PolyML; exit_use_dir".";' \
1296
ae31bb7774a7 added calls of init_html and make_chart
clasohm
parents: 953
diff changeset
    35
		       | $(COMP) $(BIN)/Cube;\
ae31bb7774a7 added calls of init_html and make_chart
clasohm
parents: 953
diff changeset
    36
                fi;;\
ae31bb7774a7 added calls of init_html and make_chart
clasohm
parents: 953
diff changeset
    37
	sml*)	if [ "$${MAKE_HTML-undefined}" != "undefined" ];\
1361
90d615b599d9 main directory is now read by exit_use_dir, too;
clasohm
parents: 1296
diff changeset
    38
                then echo 'make_html := true; exit_use_dir".";                                            xML"$(BIN)/Cube" banner;' | $(BIN)/Pure;\
90d615b599d9 main directory is now read by exit_use_dir, too;
clasohm
parents: 1296
diff changeset
    39
                else echo 'exit_use_dir"."; xML"$(BIN)/Cube" banner;' \
1296
ae31bb7774a7 added calls of init_html and make_chart
clasohm
parents: 953
diff changeset
    40
                       | $(BIN)/Pure;\
ae31bb7774a7 added calls of init_html and make_chart
clasohm
parents: 953
diff changeset
    41
                fi;;\
468
3dd1dcb509ac Improved error checking
lcp
parents: 335
diff changeset
    42
	*)	echo Bad value for ISABELLECOMP: \
3dd1dcb509ac Improved error checking
lcp
parents: 335
diff changeset
    43
                	$(COMP) is not poly or sml;;\
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    44
	esac
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    45
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    46
$(BIN)/Pure:
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    47
	cd ../Pure;  $(MAKE)
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    48
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    49
test:   ex.ML $(BIN)/Cube
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    50
	case "$(COMP)" in \
953
17d7fad9c9a2 Now calls exit_use instead of use, for prompt failure if errors are detected.
lcp
parents: 468
diff changeset
    51
	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
    52
	sml*)	echo 'exit_use"ex.ML";' | $(BIN)/Cube;;\
468
3dd1dcb509ac Improved error checking
lcp
parents: 335
diff changeset
    53
	*)	echo Bad value for ISABELLECOMP: \
3dd1dcb509ac Improved error checking
lcp
parents: 335
diff changeset
    54
                	$(COMP) is not poly or sml;;\
0
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    55
	esac
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    56
a5a9c433f639 Initial revision
clasohm
parents:
diff changeset
    57
.PRECIOUS:  $(BIN)/Pure  $(BIN)/Cube