debian-koji/www/static/errors/Makefile
2007-02-14 11:25:01 -05:00

18 lines
335 B
Makefile

SERVERDIR = /errors
FILES = $(wildcard *.html)
_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 -m 644 $(FILES) $(DESTDIR)/$(SERVERDIR)