aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-05-24 21:48:58 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-05-24 21:48:58 +0200
commit152fe90daa7b4c357d93fe9187b8275c979efdf0 (patch)
tree5fbab43a2603dfcbcb38d82b6dcbd0298ae1d744 /makefile
parent8cd5f89bba7d020151d162456e0f9d859c405d99 (diff)
minor tweaks
Diffstat (limited to 'makefile')
-rw-r--r--makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/makefile b/makefile
new file mode 100644
index 0000000..2a2a5fe
--- /dev/null
+++ b/makefile
@@ -0,0 +1,14 @@
+WEBROOT = /srv/www/pipeframe.xyz
+
+FILES += index.html
+FILES += style.css
+FILES += pipeframe.png
+
+install: FORCE
+ cp -ar $(FILES) $(WEBROOT)
+
+uninstall: FORCE
+ $(RM) -r $(FILES:%=$(WEBROOT)/%)
+
+.PHONY: FORCE
+