summaryrefslogtreecommitdiffstats
path: root/www/static/Makefile
diff options
context:
space:
mode:
authorDennis Gilmore <dennis@ausil.us>2009-12-06 16:27:44 -0600
committerDennis Gilmore <dennis@ausil.us>2009-12-06 16:27:44 -0600
commit4397e52cda369eae915fc76d9c24378e82163e79 (patch)
tree70cfb5ba8fe9e22636b2d9c582c6ca88c63a7822 /www/static/Makefile
downloadkoji-theme-fedora-4397e52cda369eae915fc76d9c24378e82163e79.tar.gz
koji-theme-fedora-4397e52cda369eae915fc76d9c24378e82163e79.tar.xz
koji-theme-fedora-4397e52cda369eae915fc76d9c24378e82163e79.zip
initial import from the hg repo with Makefile fixes for git
Diffstat (limited to 'www/static/Makefile')
-rw-r--r--www/static/Makefile24
1 files changed, 24 insertions, 0 deletions
diff --git a/www/static/Makefile b/www/static/Makefile
new file mode 100644
index 0000000..423e56b
--- /dev/null
+++ b/www/static/Makefile
@@ -0,0 +1,24 @@
+SUBDIRS = images errors
+
+SERVERDIR = /usr/share/koji-themes/fedora-koji/
+FILES = $(wildcard *.css)
+
+_default:
+ @echo "nothing to make. try make install"
+
+clean:
+ rm -f *.o *.so *.pyc *~
+ for d in $(SUBDIRS); do make -s -C $$d clean; done
+
+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)
+
+ for d in $(SUBDIRS); do make DESTDIR=$(DESTDIR)/$(SERVERDIR) \
+ -C $$d install; [ $$? = 0 ] || exit 1; done