diff options
author | Bruce Momjian <bruce@momjian.us> | 2010-06-12 15:58:38 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2010-06-12 15:58:38 +0000 |
commit | 99fdb4a9eae673c7697485241bf6062aa6bf26fa (patch) | |
tree | 7481fddd78fded1b4134a06424b763b8b3092640 /doc/src | |
parent | 7d7780f40d1a06d443da9f61af24a8a8fbad2171 (diff) | |
download | postgresql-99fdb4a9eae673c7697485241bf6062aa6bf26fa.tar.gz postgresql-99fdb4a9eae673c7697485241bf6062aa6bf26fa.zip |
Add SGML Makefile rule for single-page text, postgres.txt.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/src/sgml/Makefile b/doc/src/sgml/Makefile index 1a5e83e64d9..80a7baae613 100644 --- a/doc/src/sgml/Makefile +++ b/doc/src/sgml/Makefile @@ -2,7 +2,7 @@ # # PostgreSQL documentation makefile # -# $PostgreSQL: pgsql/doc/src/sgml/Makefile,v 1.145 2010/06/12 15:42:44 momjian Exp $ +# $PostgreSQL: pgsql/doc/src/sgml/Makefile,v 1.146 2010/06/12 15:58:38 momjian Exp $ # #---------------------------------------------------------------------------- @@ -108,6 +108,10 @@ html-stamp: postgres.sgml $(ALLSGML) stylesheet.dsl postgres.html: postgres.sgml $(ALLSGML) stylesheet.dsl $(JADE.html.call) -V nochunks -V rootchunk -V '(define %root-filename% #f)' -V '(define use-output-dir #f)' -i include-index $< +# single-page text +postgres.txt: postgres.html + $(LYNX) -force_html -dump -nolist -stdin $< > $@ + HTML.index: postgres.sgml $(ALMOSTALLSGML) stylesheet.dsl @$(MKDIR_P) html $(JADE.html.call) -V html-index $< |