mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-03-20 13:33:51 +01:00
27 lines
449 B
Plaintext
27 lines
449 B
Plaintext
open CoqBuildRule
|
|
.PHONY: all clean
|
|
|
|
FILES[] =
|
|
Pow
|
|
MultiByte
|
|
ListUtil
|
|
Object
|
|
SerializeSpec
|
|
Prefix
|
|
Soundness
|
|
SerializeImplement
|
|
SerializedList
|
|
DeserializeImplement
|
|
OCamlBase
|
|
Util
|
|
ExtractUtil
|
|
Main
|
|
|
|
.DEFAULT: all
|
|
|
|
all: msgpackCore.ml msgpackCore.mli
|
|
msgpackCore.ml msgpackCore.mli: $(CoqProof $(FILES))
|
|
echo "Proof complete"
|
|
clean:
|
|
rm -rf *.vo *.glob *~ *.omc .omakedb .omakedb.lock *.cm[iox] *.annot *.o msgpackCore.ml msgpackCore.mli
|