Revision 109cbb72b58c68e6f8ab6290ad3f8c96aa62f4a5 authored by Dominique Larchey-Wendling on 11 April 2020, 19:44:16 UTC, committed by Dominique Larchey-Wendling on 11 April 2020, 19:44:16 UTC
This reverts commit 1991a25ab6b82f256292db63ce90100454f212c7.
1 parent 1991a25
Raw File
Makefile
all: Makefile.coq
	+make -f Makefile.coq all

html: Makefile.coq
	+make -f Makefile.coq html
	mv html/*.html ../website
	rm -rf html

install: Makefile.coq
	+make -f Makefile.coq install

uninstall: Makefile.coq
	+make -f Makefile.coq uninstall

clean: Makefile.coq
	+make -f Makefile.coq clean
	rm -f Makefile.coq Makefile.coq.conf

Makefile.coq: _CoqProject
	coq_makefile -f _CoqProject -o Makefile.coq

.PHONY: all html clean

dummy:

%.vo: Makefile.coq dummy
	+make -f Makefile.coq $@
back to top