blob: fc488d68d6f2c381e93702210c03bd1fbdeb5879 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
MODULES := Axioms Name Syntax Semantics
VS := $(MODULES:%=%.v)
.PHONY: coq clean
coq: Makefile.coq
make -f Makefile.coq
Makefile.coq: Makefile $(VS)
coq_makefile -impredicative-set $(VS) -o Makefile.coq
clean:: Makefile.coq
make -f Makefile.coq clean
rm -f Makefile.coq
|