debian-koji/www/static/images/Makefile
2007-05-15 10:50:06 -04:00

18 lines
349 B
Makefile

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)