aboutsummaryrefslogtreecommitdiff
path: root/doc/makefile
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-11-09 14:02:41 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-11-09 14:02:41 +0200
commitedae7d98cfac5f55782236d397c831f68ebe11a6 (patch)
tree417df3223034fb02421731412203ae361c43e15a /doc/makefile
parentce696c26d2c9dd5a5813fd865082ab19ac49bcfa (diff)
Implement new compilation architecture
Instead of compiling the header directly, g++ is now invoked to compile stdin. At the same time the odb driver pipes the original header to g++. This new approach allows us to add some source code before and/or after the original header.
Diffstat (limited to 'doc/makefile')
-rw-r--r--doc/makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/makefile b/doc/makefile
index ae60070..2885a9d 100644
--- a/doc/makefile
+++ b/doc/makefile
@@ -31,6 +31,7 @@ $(out_base)/odb.xhtml: $(src_root)/odb/options.cli \
$(src_base)/odb-prologue.xhtml \
$(src_base)/odb-epilogue.xhtml | $(out_base)/.
$(call message,cli-html $<,$(cli) --generate-html --stdout \
+--suppress-undocumented \
--html-prologue $(src_base)/odb-prologue.xhtml \
--html-epilogue $(src_base)/odb-epilogue.xhtml $< >$@)
@@ -38,6 +39,7 @@ $(out_base)/odb.1: $(src_root)/odb/options.cli \
$(src_base)/odb-prologue.1 \
$(src_base)/odb-epilogue.1 | $(out_base)/.
$(call message,cli-man $<,$(cli) --generate-man --stdout \
+--suppress-undocumented \
--man-prologue $(src_base)/odb-prologue.1 \
--man-epilogue $(src_base)/odb-epilogue.1 $< >$@)