13999
|
1 |
## targets
|
|
2 |
|
|
3 |
default: Isar
|
|
4 |
|
|
5 |
## global settings
|
|
6 |
|
|
7 |
SRC = $(ISABELLE_HOME)/src
|
|
8 |
OUT = $(ISABELLE_OUTPUT)
|
|
9 |
LOG = $(OUT)/log
|
28500
|
10 |
USEDIR = $(ISABELLE_TOOL) usedir -i false -g false -d false -D document -v true
|
13999
|
11 |
|
|
12 |
|
|
13 |
## Isar
|
|
14 |
|
|
15 |
Isar: $(LOG)/HOL-Isar.gz
|
|
16 |
|
|
17 |
$(LOG)/HOL-Isar.gz: Isar/ROOT.ML Isar/document/intro.tex \
|
|
18 |
Isar/document/root.tex Isar/document/root.bib Isar/*.thy
|
|
19 |
@$(USEDIR) HOL Isar
|
30458
|
20 |
@rm -f Isar/document/isabelle.sty Isar/document/isabellesym.sty \
|
|
21 |
Isar/document/pdfsetup.sty Isar/document/session.tex
|
13999
|
22 |
|
|
23 |
|
|
24 |
## clean
|
|
25 |
|
|
26 |
clean:
|
|
27 |
@rm -f $(LOG)/HOL-Isar.gz
|
|
28 |
|