diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -28,12 +28,11 @@ The game protocol is outlined in [protocol.md](./protocol.md). ## Building The high-level build system is Make. But Rust's Cargo is also used. There are is -a `all` target for everything and `all_`_component_ for each component. +a `all` target for everything and `all_<component>` for each component. ```sh make all # Build everything -make all_client # Build only client -make all_server # Build only server +make all_{client,server,book,data,testclient} # Build only one component make clean # Remove build files ``` @@ -53,10 +52,11 @@ make clean # Remove build files - [sed](https://www.gnu.org/software/sed) - Test client: - [Rustup](https://rustup.rs) - - esbuild + - [esbuild](https://esbuild.github.io/) - Book export: - [Godot](https://godotengine.org) (>=4.5) - [Rustup](https://rustup.rs) + - (Optional) [Graphviz](https://graphviz.org/) ## Contributing |