summaryrefslogtreecommitdiffstats
path: root/www/static/images/Makefile
blob: fd7f2cad4f2b43ee3fb551e25457eb27173895ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
SERVERDIR = /images
FILES = $(wildcard *.gif *.png *.ico)

_default:
	@echo "nothing to make.  try make install"

clean:
	rm -f *.o *.so *.pyc *~

install:
	@if [ "$(DESTDIR)" = "" ]; then \
		echo " "; \
		echo "ERROR: A destdir is required"; \
		exit 1; \
	fi

	mkdir -p $(DESTDIR)/$(SERVERDIR)
	install -p -m 644 $(FILES) $(DESTDIR)/$(SERVERDIR)