prepared file structure for independent project

This commit is contained in:
fszimnau
2025-09-04 10:30:49 +02:00
parent 7aae2f018b
commit 69aada0eec
12 changed files with 0 additions and 0 deletions

8
compileProject.sh Normal file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env bash
set -uo pipefail
if [[ $# -ge 1 && $1 == "clean" ]]; then
rm -r target/;
fi
javac -Xlint -d target/ src/**/*.java;