From: server Date: Mon, 20 Jan 2025 02:21:53 +0000 (-0500) Subject: Sun Jan 19 09:21:53 PM EST 2025 X-Git-Url: http://www.foleosoft.com/?a=commitdiff_plain;h=a0f302dd96e4604c3c80d3bde6e28c99a223c36a;p=QAnsel.git Sun Jan 19 09:21:53 PM EST 2025 --- diff --git a/Makefile b/Makefile index ce398c8..64a1ec0 100644 --- a/Makefile +++ b/Makefile @@ -7,5 +7,11 @@ simple: source: bash build.sh src +web: + bash build.sh www + requirements: sudo apt install libsdl2-dev + +readme: + @pandoc -f markdown -t html -o - README.md diff --git a/bin/qansel-source-web.zip b/bin/qansel-source-web.zip new file mode 100644 index 0000000..316cbf5 Binary files /dev/null and b/bin/qansel-source-web.zip differ diff --git a/build.sh b/build.sh index 6670efb..6e9bfa0 100644 --- a/build.sh +++ b/build.sh @@ -11,6 +11,14 @@ then exit fi +if [ "$1" = "www" ] +then + cd src/www + find . -iname '*' | zip -@ ../../bin/qansel-source-web.zip + cd ../.. + exit +fi + echo "Verifying build commands exist..." for i in echo cat grep sed xxd gcc rm printf uname do