From f939d19e9bcb0cc0cf048aa0c8037f1f9c5a8c8b Mon Sep 17 00:00:00 2001 From: Roland Stigge Date: Fri, 5 Jan 2018 21:03:31 +0100 Subject: Initial commit, basic working webbox (WIP), see TODO --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..cae9e7c --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +all: + make -C src + +install: all + sudo service apache2 stop + sudo cp -r html/* /var/www/webbox/ + sudo mkdir -p /usr/lib/webbox + sudo cp src/query /usr/lib/webbox/ + sudo service apache2 start + +clean: + make -C src clean -- cgit v1.2.3