Rename main to server and add empty executable userctl

This commit is contained in:
2026-05-28 12:53:43 +02:00
parent 22b796ae26
commit f343c86800
4 changed files with 21 additions and 7 deletions

View File

@@ -5,19 +5,20 @@ clear
if [ $1 = "build" ]; then
echo "Building"
make main -B
make server -B
make userctl -B
elif [ $1 = "run" ]; then
echo "Running"
make main
./output/main 5000 ./library "Testing library"
make server
./output/server 5000 ./library "Testing library"
elif [ $1 = "debug" ]; then
echo "Debugging"
make main
gf2 ./output/main
make server
gf2 ./output/server
elif [ $1 = "clean" ]; then
echo "Cleaning"