summaryrefslogtreecommitdiffstats
path: root/www/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'www/Makefile')
-rw-r--r--www/Makefile23
1 files changed, 23 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile
new file mode 100644
index 0000000..3b0cbb1
--- /dev/null
+++ b/www/Makefile
@@ -0,0 +1,23 @@
+SUBDIRS = static
+
+_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)/usr/share/koji-themes/fedora-arm/
+
+ mkdir -p $(DESTDIR)/etc/httpd/conf.d
+ install -p -m 644 httpd.conf $(DESTDIR)/etc/httpd/conf.d/00kojifedoraarm.conf
+
+ for d in $(SUBDIRS); do make DESTDIR=$(DESTDIR) \
+ -C $$d install; [ $$? = 0 ] || exit 1; done