Simple example using libmicrohttpd

This commit is contained in:
2026-05-01 16:00:53 +02:00
parent b0658f594b
commit 8bb4fb1ab7
11 changed files with 19939 additions and 0 deletions

20
build.sh Executable file
View File

@@ -0,0 +1,20 @@
#!/usr/bin/env sh
if [ $1 = "build" ]; then
make main -B
elif [ $1 = "run" ]; then
make main
./output/main
elif [ $1 = "debug" ]; then
echo "Debugging"
elif [ $1 = "clean" ]; then
rm -rf ./output/
else
echo "Invalid command."
fi