summaryrefslogtreecommitdiff
path: root/docbook/Makefile.common
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2014-01-24 18:55:27 +0000
committerGerald Combs <gerald@wireshark.org>2014-01-24 18:55:27 +0000
commit8997fb0d899e4877e67dc287dcdd6b26904bf112 (patch)
treec92c68ed810d081a6f8647122defe04aff6b0533 /docbook/Makefile.common
parentd8c15b8d91f5853033611599791311da1e6f7869 (diff)
downloadwireshark-8997fb0d899e4877e67dc287dcdd6b26904bf112.tar.gz
Start migrating the Developer's Guide to AsciiDoc. So far only one
chapter (WSDG_chapter_sources) has been converted. Conversion was done using the script in https://code.wireshark.org/review/#/c/9/ along with manual cleanup. Changes are mostly limited formatting. It's helpful to have a copy of the pre-conversion guide for comparison. I've placed a chunked copy online at http://www.wireshark.org/~gerald/wsdg_html_2014_01/ . Tested under Autotools. Nmake and CMake will likely break. I'll take a look shortly. If only we had documention adding a feature branch to Gerrit and using it to test different platforms... svn path=/trunk/; revision=54945
Diffstat (limited to 'docbook/Makefile.common')
-rw-r--r--docbook/Makefile.common11
1 files changed, 9 insertions, 2 deletions
diff --git a/docbook/Makefile.common b/docbook/Makefile.common
index eda8e0792f..77a62cff60 100644
--- a/docbook/Makefile.common
+++ b/docbook/Makefile.common
@@ -165,7 +165,7 @@ WSDG_FILES = \
wsdg_src/WSDG_chapter_env_intro.xml \
wsdg_src/WSDG_chapter_libraries.xml \
wsdg_src/WSDG_chapter_quick_setup.xml \
- wsdg_src/WSDG_chapter_sources.xml \
+ wsdg_src/WSDG_chapter_sources.asciidoc \
wsdg_src/WSDG_chapter_tools.xml \
wsdg_src/WSDG_chapter_userinterface.xml \
wsdg_src/WSDG_chapter_works.xml \
@@ -173,6 +173,9 @@ WSDG_FILES = \
wsdg_src/WSDG_preface.xml \
ws.css
+WSDG_GENERATED_SOURCE = \
+ wsdg_src/WSDG_chapter_sources.xml
+
WSDG_GRAPHICS = \
wsdg_graphics/ws-capture-sync.dia \
wsdg_graphics/ws-capture-sync.png \
@@ -197,7 +200,7 @@ WSUG_SOURCE = \
$(WSUG_GRAPHICS)
# developer-guide.xml must be first in the list (to match $<)
-WSDG_SOURCE = \
+WSDG_DIST = \
developer-guide.xml \
git_version.xml \
GPL_appendix.xml \
@@ -206,6 +209,8 @@ WSDG_SOURCE = \
$(WSDG_FILES) \
$(WSDG_GRAPHICS)
+WSDG_SOURCE = $(WSDG_DIST) $(WSDG_GENERATED_SOURCE)
+
RELEASE_NOTES_SOURCE = \
release-notes.asciidoc \
Makefile.common \
@@ -218,6 +223,8 @@ CLEANFILES = \
*.hhp \
*.pdf \
*.validated \
+ $(WSDG_GENERATED_SOURCE) \
+ wsdg_src/*.dbk \
wsdg_chm \
wsdg_html.zip \
wsdg_html_chunked.zip \