mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-03-20 05:27:56 +01:00
15 lines
278 B
Plaintext
15 lines
278 B
Plaintext
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) $<
|