msgpack/ocaml/proof/CoqBuildRule
2011-04-03 17:11:53 +09:00

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) $<