about summary refs log tree commit homepage
path: root/GNUmakefile
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-09-17 20:15:31 -0700
committerEric Wong <normalperson@yhbt.net>2009-09-17 20:17:55 -0700
commit711ca5408415fd3f435d0a36d3284baeda51ce28 (patch)
tree2ac43cbedbcd20f8d6e5cb0be00d4407466cee5c /GNUmakefile
parente46489991e6306ed5ebdbb3f8e72d21070f1317b (diff)
downloadunicorn-711ca5408415fd3f435d0a36d3284baeda51ce28.tar.gz
Kinda sorta works, still some Markdown => HTML formatting issues
to work out but it gives the site a reasonably consistent look.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 4cd7b97..d21d974 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -152,9 +152,15 @@ ChangeLog: GIT-VERSION-FILE
 
 # using rdoc 2.4.1+
 doc: .document $(ext)/unicorn_http.c NEWS ChangeLog
+        > unicorn.1 && > unicorn_rails.1
         rdoc -Na -t "$(shell sed -ne '1s/^= //p' README)"
         install -m644 COPYING doc/COPYING
-        cd doc && ln README.html tmp.html && mv tmp.html index.html
+        $(MAKE) -C Documentation install-html
+        cd doc && for i in unicorn unicorn_rails; do \
+          sed -e '/"documentation">/r man1/'$$i'.1.html' \
+                < $${i}_1.html > tmp && mv tmp $${i}_1.html; done
+        cd doc && ln README.html tmp && mv tmp index.html
+        $(RM) unicorn.1 unicorn_rails.1
 
 rails_git_url = git://github.com/rails/rails.git
 rails_git := vendor/rails.git