Add build/install scripts and improve README.

This commit is contained in:
Christian Deacon
2025-02-23 17:27:27 -05:00
parent f771412f6e
commit 816960bf39
9 changed files with 225 additions and 46 deletions

7
scripts/clean.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
if [ -z "$ROOT" ]; then
make clean
else
cd $ROOT && make clean
fi