https://github.com/AU-COBRA/ConCert
Raw File
Tip revision: 8afa8343322daf144576555ac800ca5a7d6120fc authored by Danil Annenkov on 25 February 2022, 11:56:07 UTC
Switch to LIGO 0.34.0; uncomment extraction of CounterSubsetTypes
Tip revision: 8afa834
Makefile
all: utils execution embedding extraction
.PHONY: all

utils:
	+make -C utils
.PHONY: utils

execution: utils
	+make -C execution
.PHONY: execution

embedding: utils execution
	+make -C embedding
.PHONY: embedding

extraction: utils execution embedding
	+make -C extraction
.PHONY: extraction

clean:
	+make -C utils clean
	+make -C execution clean
	+make -C embedding clean
	+make -C extraction clean
	rm -rf docs
.PHONY: clean

install: all
	+make -C utils install
	+make -C execution install
	+make -C embedding install
	+make -C extraction install
.PHONY: install

uninstall: all
	+make -C utils uninstall
	+make -C execution uninstall
	+make -C embedding uninstall
	+make -C extraction uninstall
.PHONY: uninstall

test-extraction:
	+make -C extraction test-extraction
.PHONY: test-extraction

process-extraction-examples:
	+make -C extraction process-extraction-examples
.PHONY: process-extraction-examples


clean-extraction-out-files:
	+make -C extraction clean-extraction-out-files
.PHONY: clean-extraction-out-files

clean-compiled-extraction:
	+make -C extraction clean-compiled-extraction
.PHONY:clean-compiled-extraction

clean-extraction-examples:
	+make -C extraction clean-extraction-examples
.PHONY: clean-extraction-examples

html: all
	rm -rf docs
	mkdir docs
	coqdoc --html --interpolate --parse-comments \
		--with-header extra/header.html --with-footer extra/footer.html \
		-R utils/theories ConCert.Utils \
		-R execution/theories ConCert.Execution \
		-R embedding/theories ConCert.Embedding \
		-R extraction/theories ConCert.Extraction \
		-d docs `find . -type f -wholename "*theories/*" -name "*.v"`
	cp extra/resources/* docs
.PHONY: html
back to top