X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=Makefile;h=51cf40fe636b735fc1d37c2b9fc504eef5be66e4;hb=beee5bf06fd433c105fda1386b3e288768221216;hp=d063bad0ea97ab7eeb66d10ac0a0feb1fed703e6;hpb=35f3941cfe3d70d720604da0b2c8850ef704a92d;p=cocanwiki.git diff --git a/Makefile b/Makefile index d063bad..51cf40f 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.7 2004/09/20 15:34:36 rich Exp $ +# $Id: Makefile,v 1.11 2004/11/05 12:41:52 rich Exp $ include Makefile.config @@ -30,6 +30,7 @@ pkg-install: install -m 0644 cocanwiki.sql $(DESTDIR)$(WIKIINSTALLDIR) install -m 0644 conf/cocanwiki.conf $(DESTDIR)$(WIKIINSTALLDIR)/conf + install -m 0644 html/favicon.ico $(DESTDIR)$(WIKIINSTALLDIR)/html install -m 0644 html/robots.txt $(DESTDIR)$(WIKIINSTALLDIR)/html install -m 0644 html/_bin/*.cma $(DESTDIR)$(WIKIINSTALLDIR)/html/_bin install -m 0644 html/_bin/*.cmo $(DESTDIR)$(WIKIINSTALLDIR)/html/_bin @@ -45,8 +46,13 @@ 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