Build Script Tweaks

Changed location of the /build directory to be in the root to make for
easier cleaning of project. Added in a clean-all.sh script as well to
clean everything.

Clean Script

Added in a way to clean the build environment as well.
This commit is contained in:
2024-02-04 13:39:28 -05:00
parent 31ba05fb8d
commit 0f0ecf0307
2 changed files with 12 additions and 2 deletions

10
clean-all.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
# Clean up paths if they exist
if [[ -d "./build/" ]]; then
rm -rf ./build
fi
if [[ -d "./bin/" ]]; then
rm -rf ./bin
fi