author | kuncar |
Mon, 26 Mar 2012 15:32:54 +0200 | |
changeset 47116 | 529d2a949bd4 |
parent 32835 | 00c14c4a6b4f |
permissions | -rw-r--r-- |
15337 | 1 |
|
2 |
## targets |
|
3 |
||
4 |
default: Sugar |
|
5 |
images: |
|
6 |
test: Sugar |
|
7 |
||
8 |
all: images test |
|
9 |
||
10 |
||
11 |
## global settings |
|
12 |
||
13 |
SRC = $(ISABELLE_HOME)/src |
|
14 |
OUT = $(ISABELLE_OUTPUT) |
|
15 |
LOG = $(OUT)/log |
|
16 |
||
32835
00c14c4a6b4f
enable slow-motion mode to accomodate unsynchronized refs within theory sources;
wenzelm
parents:
30458
diff
changeset
|
17 |
USEDIR = $(ISABELLE_TOOL) usedir -v true -i false -g false -d false -D document -M 1 |
15337 | 18 |
|
19 |
||
20 |
## Sugar |
|
21 |
||
22 |
Sugar: $(LOG)/HOL-Sugar.gz |
|
23 |
||
15471 | 24 |
$(LOG)/HOL-Sugar.gz: Sugar/ROOT.ML Sugar/Sugar.thy \ |
25 |
Sugar/document/root.tex Sugar/document/root.bib \ |
|
15898
435f0e743854
use absolute path to find LaTeXSugar and OptionalSugar
kleing
parents:
15894
diff
changeset
|
26 |
$(SRC)/HOL/Library/LaTeXsugar.thy $(SRC)/HOL/Library/OptionalSugar.thy |
15337 | 27 |
@$(USEDIR) HOL Sugar |
30458 | 28 |
@rm -f Sugar/document/isabelle.sty Sugar/document/isabellesym.sty \ |
29 |
Sugar/document/pdfsetup.sty Sugar/document/session.tex |
|
15337 | 30 |
|
31 |
||
32 |
## clean |
|
33 |
||
34 |
clean: |
|
35 |
@rm -f $(LOG)/HOL-Sugar.gz |