about summary refs log tree commit homepage
path: root/local.mk.sample
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-08-17 00:07:42 -0700
committerEric Wong <normalperson@yhbt.net>2009-08-17 00:13:54 -0700
commit4e81d6f2e2a6a6b3de15bbd0e08992dd4630fa4b (patch)
tree9423943d84445e9383d74b105488571337731cd0 /local.mk.sample
parent12d9161f33e98331552a8a767c4fc11ab741cc5a (diff)
downloadunicorn-4e81d6f2e2a6a6b3de15bbd0e08992dd4630fa4b.tar.gz
* Documented Unicorn::HttpParser API methods

* Keep GPL2 (COPYING) as-is without RDoc formatting.

* The auto-generated index.html is stupid, replace it with
  README which looks saner.
Diffstat (limited to 'local.mk.sample')
-rw-r--r--local.mk.sample2
1 files changed, 1 insertions, 1 deletions
diff --git a/local.mk.sample b/local.mk.sample
index d218474..92c121b 100644
--- a/local.mk.sample
+++ b/local.mk.sample
@@ -38,7 +38,7 @@ publish_doc:
 # Create gzip variants of the same timestamp as the original so nginx
 # "gzip_static on" can serve the gzipped versions directly.
 doc_gz: suf := html js css
-doc_gz: docs = $(shell find doc/ -regex '^.*\.\(html\|js\|css\)$$')
+doc_gz: docs = $(shell find doc/ -regex '^.*\.\(html\|js\|css\)$$') doc/COPYING
 doc_gz:
         for i in $(docs); do \
           gzip --rsyncable < $$i > $$i.gz; touch -r $$i $$i.gz; done