gdritter repos rust-examples / 3a7b2f8
Stopped the README from lying Getty Ritter 9 years ago
1 changed file(s) with 7 addition(s) and 9 deletion(s). Collapse all Expand all
1515 Build System
1616 ------------
1717
18 These programs are built using [`redo`](https://github.com/apenwarr/redo),
18 The presentation is built using [`redo`](https://github.com/apenwarr/redo),
1919 which is my preferred build system for small projects. I understand that not
2020 everyone has `redo`, so I've included `do`, which is a small shell
2121 implementation of `redo` that rebuilds everything rather than doing clever
22 dependency-tracking like `redo` proper. You can build any of these projects with
22 dependency-tracking like `redo` proper. You can build the presentation with
2323
24 $ cd project-dir
24 $ cd presentation
2525 $ ../do
2626
27 and clean any of them with
27 and clean it with
2828
29 $ cd project-dir
29 $ cd presentation
3030 $ ../do clean
3131
32 The only project that really _needs_ a build script is the presentation,
33 which gets built with [`pandoc`](http://johnmacfarlane.net/pandoc/) and
34 then compiled with `xelatex`, but each one has a build script in case
35 you want to poke at the commands used to build the projects.
32 The Rust projects have been updated to use [Cargo](http://crates.io/), the
33 proper Rust build system.