mirror of
https://github.com/CatalaLang/catala.git
synced 2024-11-08 07:51:43 +03:00
05752988e6
Not much there at the moment, but being able to specify the include directories is already pretty useful to run clerk directly e.g. on `catala-examples`. (you had to explicitely specify variable `CATALA_INCLUDE`, the `-I` flags or to go through `make` without that) |
||
---|---|---|
.. | ||
clerk_config.ml | ||
clerk_config.mli | ||
clerk_driver.ml | ||
clerk_driver.mli | ||
clerk_report.ml | ||
clerk_report.mli | ||
clerk_runtest.ml | ||
clerk_runtest.mli | ||
clerk_scan.ml | ||
clerk_scan.mli | ||
clerk.ml | ||
dune | ||
README.md |
Clerk
The build system for Catala built on top of ninja.
Usage
Use clerk --help
if you have installed it to get more information about the command line
options available. To get the development version of the help, run make help_clerk
after make build
. The clerk
binary corresponds to the Catala build system,
responsible for testing among other things.
Under the hood
To perform tests, Clerk will first generate a build.ninja
file with required
rules and build statements retrieved from the given input path(s), before
executing the command ninja test
.
The handling of the ninja
structure is done with the module Ninja_utils
.