src/LCF/IsaMakefile
author wenzelm
Wed, 14 Dec 2011 12:02:02 +0100
changeset 45860 93eda35a8377
parent 42138 e54a985daa61
permissions -rw-r--r--
more visible benchmarks; uniform IsaMakefile target "full" to cover such extra sessions;

#
# IsaMakefile for LCF
#

## targets

default: LCF
images: LCF
test: LCF-ex
all: images test
full: all
smlnj: all


## global settings

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


## LCF

LCF: FOL $(OUT)/LCF

FOL:
	@cd $(SRC)/FOL; $(ISABELLE_TOOL) make FOL

$(OUT)/LCF: $(OUT)/FOL LCF.thy ROOT.ML
	@$(ISABELLE_TOOL) usedir -b -r $(OUT)/FOL LCF


## LCF-ex

LCF-ex: LCF $(LOG)/LCF-ex.gz

$(LOG)/LCF-ex.gz: $(OUT)/LCF ex/Ex1.thy ex/Ex2.thy ex/Ex3.thy ex/Ex4.thy ex/ROOT.ML
	@$(ISABELLE_TOOL) usedir $(OUT)/LCF ex


## clean

clean:
	@rm -f $(OUT)/LCF $(LOG)/LCF.gz $(LOG)/LCF-ex.gz