IsaMakefile
author urbanc
Mon, 21 Feb 2011 03:33:27 +0000
changeset 136 13b0f3dac9a2
parent 72 e5116c2e6187
child 162 e93760534354
permissions -rw-r--r--
final final polishing


## targets

default: paper
all: slides paper

## global settings

SRC = $(ISABELLE_HOME)/src
OUT = $(ISABELLE_OUTPUT)
LOG = $(OUT)/log


USEDIR = $(ISABELLE_TOOL) usedir -v true -t true 


## Slides

session1: Slides/ROOT.ML \
         Slides/document/root* \
         Slides/Slides.thy
	@$(USEDIR) -D generated -f ROOT.ML ListP tphols-2011 

slides: session1 
	rm -f Slides/generated/*.aux # otherwise latex will fall over
	cd Slides/generated ; $(ISABELLE_TOOL) latex -o pdf root.beamer.tex 
	cp Slides/generated/root.beamer.pdf Slides/slides.pdf     


## long paper

session2: tphols-2011/ROOT.ML \
         tphols-2011/document/root* \
         *.thy
	@$(USEDIR) -D generated -f ROOT.ML ListP tphols-2011 

paper: session2 
	rm -f tphols-2011/generated/*.aux # otherwise latex will fall over
	cd tphols-2011/generated ; $(ISABELLE_TOOL) latex -o pdf root.tex 
	cd tphols-2011/generated ; $(ISABELLE_TOOL) latex -o pdf root.tex 
	cp tphols-2011/generated/root.pdf tphols-2011/myhill.pdf     

## full paper

fullsession2: tphols-2011/ROOT.ML \
         tphols-2011/document/root* \
         *.thy
	@$(USEDIR) -D generated -f ROOT.ML HOL tphols-2011 

fullpaper: fullsession2 
	rm -f tphols-2011/generated/*.aux # otherwise latex will fall over
	cd tphols-2011/generated ; $(ISABELLE_TOOL) latex -o pdf root.tex 
	cd tphols-2011/generated ; $(ISABELLE_TOOL) latex -o pdf root.tex 
	cp tphols-2011/generated/root.pdf tphols-2011/myhill.pdf   



## ITP paper

session3: Paper/ROOT.ML \
	Paper/document/root* \
	Paper/*.thy
	@$(USEDIR) -D generated -f ROOT.ML HOL Paper

itp: session3
	rm -f Paper/generated/*.aux # otherwise latex will fall over      
	cd Paper/generated ; $(ISABELLE_TOOL) latex -o pdf root.tex 
	cd Paper/generated ; bibtex root
	cd Paper/generated ; $(ISABELLE_TOOL) latex -o pdf root.tex
	cp Paper/generated/root.pdf paper.pdf     


## clean

clean:
	rm -rf Slides/generated/*
	rm -rf tphols-2011/generated/*