IsaMakefile
author Christian Urban <christian dot urban at kcl dot ac dot uk>
Thu, 24 Jan 2013 00:20:26 +0100
changeset 71 8c7f10b3da7b
parent 48 559e5c6e5113
child 163 67063c5365e1
permissions -rw-r--r--
updated


## targets

default: utm
images: utm
test: 

all: images test


## global settings

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

USEDIR = $(ISABELLE_TOOL) usedir -v true -i false -D generated


## utm

utm: $(OUT)/utm

$(OUT)/utm: thys/*.thy ROOT.ML
	@$(USEDIR) -f ROOT.ML -b HOL UTM

paper:  ROOT.ML \
	document/root* \
	*.thy
	rm -rf generated # otherwise latex will fall over 
	@$(USEDIR) -f ROOT1.ML UTM .
	$(ISABELLE_TOOL) document -o pdf  generated
	cp generated/root.pdf paper.pdf  

## ITP itp

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

itp: session_itp
	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 -f $(OUT)/utm