From 03dc5bcc01d3adda16b9eca40d6a6fcee2c1ce1c Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 6 Dec 2009 16:42:25 -0600 Subject: import of sparc koji theme from hg repo. with changes for Makefile --- www/static/errors/Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 www/static/errors/Makefile (limited to 'www/static/errors/Makefile') diff --git a/www/static/errors/Makefile b/www/static/errors/Makefile new file mode 100644 index 0000000..9da0127 --- /dev/null +++ b/www/static/errors/Makefile @@ -0,0 +1,18 @@ +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 -p -m 644 $(FILES) $(DESTDIR)/$(SERVERDIR) -- cgit