aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorNils Gillmann <ng0@n0.is>2018-09-07 15:41:06 +0000
committerNils Gillmann <ng0@n0.is>2018-09-07 15:41:06 +0000
commit15a3a09d508eed0f6d2612dd42d1b8ea720eb036 (patch)
tree6027869fe8feefc6c3f82b9204fc8ec3b4870d23 /doc
parente7583540d0ec62c21fbf098dd757be5505a8a71d (diff)
downloadgnunet-15a3a09d508eed0f6d2612dd42d1b8ea720eb036.tar.gz
gnunet-15a3a09d508eed0f6d2612dd42d1b8ea720eb036.zip
doc: start work on mdoc generation support
Signed-off-by: Nils Gillmann <ng0@n0.is>
Diffstat (limited to 'doc')
-rw-r--r--doc/documentation/Makefile.am12
-rw-r--r--doc/man/Makefile.am5
2 files changed, 17 insertions, 0 deletions
diff --git a/doc/documentation/Makefile.am b/doc/documentation/Makefile.am
index b6c666c4d..0032b22e9 100644
--- a/doc/documentation/Makefile.am
+++ b/doc/documentation/Makefile.am
@@ -175,6 +175,18 @@ version2.texi:
175 echo "@set EDITION $(PACKAGE_VERSION)" >> $@ 175 echo "@set EDITION $(PACKAGE_VERSION)" >> $@
176 echo "@set VERSION $(PACKAGE_VERSION)" >> $@ 176 echo "@set VERSION $(PACKAGE_VERSION)" >> $@
177 177
178if SECTION7
179gnunet-c-tutorial.7: version2.texi
180 @echo Attempting to output an mdoc formatted section 7 document
181 @texi2mdoc -I$(pwd):$(pwd)/chapters gnunet-c-tutorial.texi > ../man/gnunet-c-tutorial.7
182
183gnunet-documentation.7: version2.texi
184 @echo Attempting to output an mdoc formatted section 7 document
185 @texi2mdoc -I$(pwd):$(pwd)/chapters gnunet.texi > ../man/gnunet-documentation.7
186
187# TODO: (Maybe) other outputs resulting from this.
188endif
189
178# FIXME: rm *.html and *.pdf 190# FIXME: rm *.html and *.pdf
179#doc-clean: 191#doc-clean:
180# @rm *.aux *.log *.toc *.cp *.cps 192# @rm *.aux *.log *.toc *.cp *.cps
diff --git a/doc/man/Makefile.am b/doc/man/Makefile.am
index 37f881d60..d0871571d 100644
--- a/doc/man/Makefile.am
+++ b/doc/man/Makefile.am
@@ -46,3 +46,8 @@ man_MANS = \
46 gnunet-zoneimport.1 46 gnunet-zoneimport.1
47 47
48EXTRA_DIST = ${man_MANS} 48EXTRA_DIST = ${man_MANS}
49
50if SECTION7
51EXTRA_DIST += gnunet-documentation.7 \
52 gnunet-c-tutorial.7
53endif