mirror of
https://github.com/CatalaLang/catala.git
synced 2024-11-08 07:51:43 +03:00
34 lines
621 B
Plaintext
34 lines
621 B
Plaintext
(dirs runtimes compiler french_law build_system examples)
|
|
|
|
(data_only_dirs tests syntax_highlighting)
|
|
|
|
(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)))))
|
|
|
|
(alias
|
|
(name exec)
|
|
(deps compiler/catala.exe build_system/clerk.exe))
|
|
|
|
(rule
|
|
(alias runtest)
|
|
(package clerk)
|
|
(deps
|
|
(source_tree tests))
|
|
(action
|
|
(run clerk --exe %{bin:catala} test tests)))
|
|
|
|
(rule
|
|
(alias runtest)
|
|
(package clerk)
|
|
(deps
|
|
(source_tree examples))
|
|
(action
|
|
(run clerk --exe %{bin:catala} test examples)))
|