equal
deleted
inserted
replaced
1 # |
|
2 # $Id$ |
|
3 # |
|
4 |
|
5 ## targets |
|
6 |
|
7 default: HOL-datatype |
|
8 images: |
|
9 test: HOL-datatype |
|
10 all: images test |
|
11 |
|
12 |
|
13 ## global settings |
|
14 |
|
15 SRC = $(ISABELLE_HOME)/src |
|
16 OUT = $(ISABELLE_OUTPUT) |
|
17 LOG = $(OUT)/log |
|
18 |
|
19 |
|
20 ## HOL-datatype |
|
21 |
|
22 HOL: |
|
23 @cd $(SRC)/HOL; $(ISABELLE_TOOL) make HOL |
|
24 |
|
25 HOL-datatype: HOL $(LOG)/HOL-datatype.gz |
|
26 |
|
27 $(LOG)/HOL-datatype.gz: $(OUT)/HOLBrackin.thy Instructions.thy SML.thy \ |
|
28 Verilog.thy |
|
29 @cd ..; $(ISABELLE_TOOL) usedir -s HOL-datatype $(OUT)/HOL HOL-datatype |
|
30 |
|
31 |
|
32 ## clean |
|
33 |
|
34 clean: |
|
35 @rm -f $(LOG)/HOL-datatype.gz |
|