mirror of
https://github.com/achlipala/frap.git
synced 2024-11-09 16:07:49 +00:00
12 lines
214 B
Text
12 lines
214 B
Text
|
.PHONY: coq
|
||
|
|
||
|
coq: Makefile.coq
|
||
|
$(MAKE) -f Makefile.coq
|
||
|
|
||
|
Makefile.coq: Makefile _CoqProject *.v
|
||
|
coq_makefile -f _CoqProject -o Makefile.coq
|
||
|
|
||
|
clean:: Makefile.coq
|
||
|
$(MAKE) -f Makefile.coq clean
|
||
|
rm -f Makefile.coq
|