mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 03:05:28 -05:00
23 lines
434 B
Text
23 lines
434 B
Text
|
|
(rule
|
|
((targets (run_qtest.ml))
|
|
(deps ((file Makefile)))
|
|
(fallback)
|
|
;(libraries (qtest qcheck))
|
|
(action
|
|
(run make qtest-gen))
|
|
))
|
|
|
|
(executable
|
|
((name run_qtest)
|
|
(libraries (sequence gen qcheck containers containers.unix
|
|
containers.data containers.thread containers.iter
|
|
containers.sexp))
|
|
))
|
|
|
|
(alias
|
|
((name runtest)
|
|
(deps (run_qtest.exe))
|
|
(action (run ${<}))
|
|
))
|
|
|