diff options
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 14 |
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 + |