catala/dune

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
925 B
Plaintext
Raw Normal View History

(dirs runtimes compiler french_law build_system examples)
(data_only_dirs tests syntax_highlighting)
2022-08-01 20:29:34 +03:00
(copy_files compiler/surface/grammar.html)
(rule
(action
(with-stdout-to
catala.html
(pipe-stdout
(run catala --help=groff)
(run groff -P -l -P -r -mandoc -Thtml)))))
2022-12-22 22:42:56 +03:00
(rule
(action
(with-stdout-to
clerk.html
(pipe-stdout
(run clerk --help=groff)
(run groff -P -l -P -r -mandoc -Thtml)))))
(rule
(action
(with-stdout-to
catala_legifrance.html
(pipe-stdout
(run catala_legifrance --help=groff)
(run groff -P -l -P -r -mandoc -Thtml)))))
(alias
(name exec)
(deps compiler/catala.exe build_system/clerk.exe))
(rule
(alias runtest)
2022-08-09 13:05:50 +03:00
(package clerk)
(deps
(source_tree tests))
(action
(run clerk --exe %{bin:catala} test tests)))
(rule
(alias runtest)
2022-08-09 13:05:50 +03:00
(package clerk)
(deps
(source_tree examples))
(action
(run clerk --exe %{bin:catala} test examples)))