dune/doc/jbuild

33 lines
599 B
Plaintext
Raw Normal View History

2017-02-26 19:49:54 +00:00
(jbuild_version 1)
2017-02-24 17:36:39 +00:00
(rule
((targets (dune.1))
2017-02-24 17:36:39 +00:00
(action (with-stdout-to ${@}
(run ${bin:dune} --help=groff)))))
2017-05-28 03:13:34 +00:00
2017-02-24 17:36:39 +00:00
(install
((section man)
(files (dune.1))))
2017-05-28 03:13:34 +00:00
(rule
((targets (dune-config.5))
(action (with-stdout-to ${@}
(run ${bin:jbuilder} help config --man-format=groff)))))
(install
((section man)
(files (dune-config.5))))
(include jbuild.inc)
(rule
((targets (jbuild.inc.gen))
(deps ((package dune)))
(action
(with-stdout-to ${@}
(run bash ${path:update-jbuild.sh})))))
(alias
((name runtest)
(action (diff jbuild.inc jbuild.inc.gen))))