25 lines
359 B
Text
25 lines
359 B
Text
(rule
|
|
(copy# fuzz.ml fuzz_c.ml))
|
|
|
|
(rule
|
|
(copy# fuzz.ml fuzz_ocaml.ml))
|
|
|
|
(executable
|
|
(name fuzz_c)
|
|
(modules fuzz_c)
|
|
(libraries digestif.c crowbar))
|
|
|
|
(executable
|
|
(name fuzz_ocaml)
|
|
(modules fuzz_ocaml)
|
|
(libraries digestif.ocaml crowbar))
|
|
|
|
(rule
|
|
(alias runtest)
|
|
(action
|
|
(run ./fuzz_ocaml.exe)))
|
|
|
|
(rule
|
|
(alias runtest)
|
|
(action
|
|
(run ./fuzz_c.exe)))
|