about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rw-r--r--GNUmakefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 5fa9064..b9c3e22 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -54,7 +54,7 @@ doc:: .document .olddoc.yml
         -find lib -type f -name '*.rbc' -exec rm -f '{}' ';'
         $(RM) -r doc
         $(OLDDOC) prepare
-        $(RDOC) -f oldweb
+        $(RDOC) -f dark216
 
 # this requires GNU coreutils variants
 ifneq ($(RSYNC_DEST),)
@@ -69,7 +69,8 @@ publish_doc:
         install -m644 NEWS.atom.xml www/NEWS.atom.xml
         for i in $$(find www -type f ! -regex '^.*\.gz$$'); do \
           gzip --rsyncable -9 < $$i > $$i.gz; touch -r $$i $$i.gz; done
-        $(RSYNC) -av www/ $(RSYNC_DEST)
+        $(RSYNC) -av www/ $(RSYNC_DEST) \
+                --exclude index.html* --exclude created.rid*
         git ls-files | xargs touch
 endif