Skip to content
Snippets Groups Projects
Makefile 291 B
Newer Older
Ralf Jung's avatar
Ralf Jung committed
# Makefile originally taken from coq-club
all: Makefile.coq
	+make -f Makefile.coq all

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

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

%: Makefile.coq
	+make -f Makefile.coq $@

.PHONY: all clean