diff options
author | Dennis Gilmore <dennis@ausil.us> | 2009-12-06 16:53:09 -0600 |
---|---|---|
committer | Dennis Gilmore <dennis@ausil.us> | 2009-12-06 16:53:09 -0600 |
commit | 3ebe97301d31e22ddd91042c383a2ad9dfcdd3a2 (patch) | |
tree | 18ca55e97e0fd96ee28915aa3f9abd95012218af /www/static/errors/Makefile | |
download | koji-theme-fedora-s390-3ebe97301d31e22ddd91042c383a2ad9dfcdd3a2.tar.gz koji-theme-fedora-s390-3ebe97301d31e22ddd91042c383a2ad9dfcdd3a2.tar.xz koji-theme-fedora-s390-3ebe97301d31e22ddd91042c383a2ad9dfcdd3a2.zip |
initial s390x setup
Diffstat (limited to 'www/static/errors/Makefile')
-rw-r--r-- | www/static/errors/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
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) |