author | bulwahn |
Wed, 14 Dec 2011 15:56:34 +0100 | |
changeset 45868 | 397116757273 |
parent 42138 | e54a985daa61 |
child 45860 | 93eda35a8377 |
permissions | -rw-r--r-- |
2487 | 1 |
# |
2 |
# IsaMakefile for Cube |
|
3 |
# |
|
4 |
||
4518 | 5 |
## targets |
6 |
||
17453 | 7 |
default: Pure-Cube |
8 |
images: |
|
9 |
test: Pure-Cube |
|
4518 | 10 |
all: images test |
42138
e54a985daa61
added make target 'smlnj' to refer to what can/should be tested using smlnj -- allows the use of "isabelle makeall smlnj";
krauss
parents:
36862
diff
changeset
|
11 |
smlnj: all |
4518 | 12 |
|
13 |
||
14 |
## global settings |
|
15 |
||
16 |
SRC = $(ISABELLE_HOME)/src |
|
3118 | 17 |
OUT = $(ISABELLE_OUTPUT) |
4447 | 18 |
LOG = $(OUT)/log |
19 |
||
4518 | 20 |
|
17453 | 21 |
## Pure-Cube |
4518 | 22 |
|
17453 | 23 |
Pure-Cube: Pure $(LOG)/Pure-Cube.gz |
2487 | 24 |
|
4518 | 25 |
Pure: |
28500 | 26 |
@cd $(SRC)/Pure; $(ISABELLE_TOOL) make Pure |
4518 | 27 |
|
17453 | 28 |
$(LOG)/Pure-Cube.gz: $(OUT)/Pure Cube.thy Example.thy ROOT.ML |
28500 | 29 |
@cd ..; $(ISABELLE_TOOL) usedir $(OUT)/Pure Cube |
2487 | 30 |
|
4518 | 31 |
|
32 |
## clean |
|
4447 | 33 |
|
34 |
clean: |
|
17453 | 35 |
@rm -f $(LOG)/Pure-Cube.gz |