author | wenzelm |
Wed, 28 Mar 2012 13:38:56 +0200 | |
changeset 47184 | 0e5bd01383a2 |
parent 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 |
45860 | 11 |
full: all |
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
|
12 |
smlnj: all |
4518 | 13 |
|
14 |
||
15 |
## global settings |
|
16 |
||
17 |
SRC = $(ISABELLE_HOME)/src |
|
3118 | 18 |
OUT = $(ISABELLE_OUTPUT) |
4447 | 19 |
LOG = $(OUT)/log |
20 |
||
4518 | 21 |
|
17453 | 22 |
## Pure-Cube |
4518 | 23 |
|
17453 | 24 |
Pure-Cube: Pure $(LOG)/Pure-Cube.gz |
2487 | 25 |
|
4518 | 26 |
Pure: |
28500 | 27 |
@cd $(SRC)/Pure; $(ISABELLE_TOOL) make Pure |
4518 | 28 |
|
17453 | 29 |
$(LOG)/Pure-Cube.gz: $(OUT)/Pure Cube.thy Example.thy ROOT.ML |
28500 | 30 |
@cd ..; $(ISABELLE_TOOL) usedir $(OUT)/Pure Cube |
2487 | 31 |
|
4518 | 32 |
|
33 |
## clean |
|
4447 | 34 |
|
35 |
clean: |
|
17453 | 36 |
@rm -f $(LOG)/Pure-Cube.gz |