Bumped version for release.
[cocanwiki.git] / Makefile
index b6c340e..6594c47 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile,v 1.6 2004/09/17 12:35:37 rich Exp $
+# $Id: Makefile,v 1.10 2004/10/07 12:49:15 rich Exp $
 
 include Makefile.config
 
@@ -38,15 +38,20 @@ pkg-install:
        install -m 0644 html/_graphics/*.png $(DESTDIR)$(WIKIINSTALLDIR)/html/_graphics
        install -m 0644 html/_js/*.js $(DESTDIR)$(WIKIINSTALLDIR)/html/_js
        install -m 0644 html/_static/*.html $(DESTDIR)$(WIKIINSTALLDIR)/html/_static
-       install -m 0644 templates/*.html templates/*.txt $(DESTDIR)$(WIKIINSTALLDIR)/templates
+       install -m 0644 templates/*.html templates/*.txt templates/*.xml $(DESTDIR)$(WIKIINSTALLDIR)/templates
        install -m 0644 templates/admin/*.html $(DESTDIR)$(WIKIINSTALLDIR)/templates/admin
 
 clean:
        find \( -name '*~' -o -name core \) -a -exec rm {} \;
        $(MAKE) -C scripts clean
 
+FIXED_TABLES := templates themes
+
 cocanwiki.sql:
-       pg_dump -i -s cocanwiki > $@
+       pg_dump --no-owner -i -s cocanwiki > $@
+       for table in $(FIXED_TABLES); do \
+         pg_dump --no-owner -i -a -t $$table cocanwiki >> $@; \
+       done
 
 dist:
        $(MAKE) check-manifest