swh:1:snp:f54a27e650a8acca38b6d19c9bf2c307c6c07756
Raw File
Tip revision: a02e9bf11bd9330d0b6caa3bc59ec3ddb3807b29 authored by Matthieu Sozeau on 13 August 2018, 23:35:58 UTC
Update gitignore
Tip revision: a02e9bf
Makefile
all: template-coq checker extraction

.PHONY: all template-coq checker install html clean mrproper .merlin test-suite translations

install: 
	$(MAKE) -C template-coq install
	$(MAKE) -C checker install
	$(MAKE) -C extraction install

html: all
	$(MAKE) -C template-coq html
	$(MAKE) -C extraction html
	mv template-coq/html/*.html html
	rm template-coq/html/coqdoc.css
	rm -d template-coq/html

clean:
	$(MAKE) -C template-coq clean
	$(MAKE) -C extraction clean
	$(MAKE) -C checker clean
	$(MAKE) -C test-suite clean
	$(MAKE) -C translations clean

mrproper:
	$(MAKE) -C template-coq mrproper
	$(MAKE) -C extraction mrproper
	$(MAKE) -C checker mrproper

.merlin:
	$(MAKE) -C template-coq .merlin
	$(MAKE) -C checker .merlin

template-coq:
	$(MAKE) -C template-coq

extraction: checker template-coq
	$(MAKE) -C extraction

checker: template-coq
	./movefiles.sh
	$(MAKE) -C checker

test-suite: template-coq checker
	$(MAKE) -C test-suite

translations: template-coq
	$(MAKE) -C translations
back to top