mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-07 10:19:51 +00:00
14 lines
278 B
Text
14 lines
278 B
Text
public.COQC = coqc
|
|
public.COQC_FLAGS =
|
|
public.COQLIB = $(shell coqc -where)
|
|
public.COQDEP = coqdep -w -coqlib $`(COQLIB) -I .
|
|
|
|
public.CoqProof(files) =
|
|
vo=$(addsuffix .vo,$(files))
|
|
value $(vo)
|
|
|
|
%.vo %.glob: %.v
|
|
$(COQC) $(COQC_FLAGS) $<
|
|
|
|
.SCANNER: %.vo: %.v
|
|
$(COQDEP) $<
|