From 152fe90daa7b4c357d93fe9187b8275c979efdf0 Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Fri, 24 May 2024 21:48:58 +0200 Subject: minor tweaks --- makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 makefile (limited to 'makefile') 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 + -- cgit v1.2.3