| author | wenzelm | 
| Sun, 20 May 2012 11:34:33 +0200 | |
| changeset 47884 | 21c42b095c84 | 
| parent 39753 | ec6dfd9ce573 | 
| permissions | -rw-r--r-- | 
| 20948 | 1 | |
| 2 | ## targets | |
| 3 | ||
| 4 | default: Thy | |
| 5 | images: | |
| 6 | test: Thy | |
| 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 | ||
| 28500 | 17 | USEDIR = $(ISABELLE_TOOL) usedir -v true -i false -d false -C false -D document | 
| 20948 | 18 | |
| 19 | ||
| 20 | ## Thy | |
| 21 | ||
| 22 | THY = $(LOG)/HOL-Thy.gz | |
| 23 | ||
| 24 | Thy: $(THY) | |
| 25 | ||
| 39753 
ec6dfd9ce573
added dependency to base images to ensure that the doc test actually rebuilds the tutorials
 krauss parents: 
39603diff
changeset | 26 | $(THY): $(OUT)/HOL-Library Thy/ROOT.ML Thy/*.thy ../antiquote_setup.ML ../more_antiquote.ML | 
| 38501 | 27 | @$(USEDIR) -m no_brackets -m iff HOL-Library Thy | 
| 30458 | 28 | @rm -f Thy/document/isabelle.sty Thy/document/isabellesym.sty \ | 
| 39603 | 29 | Thy/document/pdfsetup.sty Thy/document/session.tex | 
| 20948 | 30 | |
| 31 | ||
| 32 | ## clean | |
| 33 | ||
| 34 | clean: | |
| 35 | @rm -f $(THY) |