aboutsummaryrefslogtreecommitdiff
path: root/makefile
blob: ab0eccc0b3968d57d2fb2db48859833231505e47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
WEBROOT = /srv/www/pipeframe.xyz

FILES += index.html
FILES += style.css
FILES += pipeframe.png
FILES += robots.txt

install: FORCE
	cp -ar $(FILES) $(WEBROOT)

uninstall: FORCE
	$(RM) -r $(FILES:%=$(WEBROOT)/%)

.PHONY: FORCE