hledger/doc/JUST-MAKE-SHAKE.md
2024-04-24 08:23:38 -10:00

1.4 KiB
Raw Blame History

Just, make, and Shake

After many years of using on GNU Make for automating project tasks, we now primarily use just https://github.com/casey/just instead. just is better enough, and clean consolidated efficient project automation is so valuable, that it is worthwhile, even though, for now, it is usually not installed by default and it lacks Makes file dependency tracking. When dependency tracking, or more powerful code, is really needed, we typically use SHAKE instead of make or just.

Justfile in the main repos top directory is where we keep the recipes (scripts); this is the starting point for automating hledger project tasks. Install and run just to see the list of recipes. I suggest using a shorter command alias j. Eg:

$ alias j=just
$ j             # list all scripts
$ j h test      # list scripts mentioning "test"

Make

GNU Make makefiles are still used in a number of subdirectories - site, finance etc.

Shake

Shake.hs in the main repos top directory complements the Justfile; it is used for tasks requiring file dependencies or more complex code, such as building documentation and the web site. Eg:

$ ./Shake.hs   # compile it for speed and git branch independence. Or: just Shake
$ ./Shake      # list scripts

tools

Additional helper scripts and tools can be found in the tools/ subdirectory.