summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2019-10-27 14:27:10 +0000
committerng0 <ng0@n0.is>2019-10-27 14:27:10 +0000
commit83eb77dafd5054bee67dc9cc05dca8dc23ecd7f0 (patch)
treed7aca6de199a2345597243525f8b9491b005416e
parent097f287acb1f2372607d1adbf475a040ca219edd (diff)
downloadgnunet-83eb77dafd5054bee67dc9cc05dca8dc23ecd7f0.tar.gz
gnunet-83eb77dafd5054bee67dc9cc05dca8dc23ecd7f0.zip
doc/man: create better rules for texi2mdoc.
-rw-r--r--doc/man/Makefile.am17
-rwxr-xr-xdoc/man/texi2mdoc-generation.sh15
2 files changed, 7 insertions, 25 deletions
diff --git a/doc/man/Makefile.am b/doc/man/Makefile.am
index 53d0d663b..a4c81dd43 100644
--- a/doc/man/Makefile.am
+++ b/doc/man/Makefile.am
@@ -5,21 +5,19 @@ do_subst = $(SED) -e 's,[@]SYSCONFDIR[@],$(sysconfdir),g'
5gnunet.conf.5: gnunet.conf.5.in Makefile 5gnunet.conf.5: gnunet.conf.5.in Makefile
6 $(do_subst) < $(srcdir)/gnunet.conf.5.in > gnunet.conf.5 6 $(do_subst) < $(srcdir)/gnunet.conf.5.in > gnunet.conf.5
7 7
8if TEXI2MDOC_GENERATION
9gnunet-c-tutorial.7: Makefile gnunet-tutorial.7
10 @echo generated texi2mdoc output || true
11
12gnunet-tutorial.7: Makefile
13 $(SH) $(srcdir)/texi2mdoc-generation.sh || true
14
15endif
16
17CLEANFILES = gnunet.conf.5 *.html 8CLEANFILES = gnunet.conf.5 *.html
18 9
19if TEXI2MDOC_GENERATION 10if TEXI2MDOC_GENERATION
11gnunet-c-tutorial.7: Makefile
12 @texi2mdoc -I../tutorial:../tutorial/chapters ../tutorial/gnunet-tutorial.texi > gnunet-c-tutorial.7
13
14gnunet-documentation.7: Makefile
15 @texi2mdoc -I../handbook:../handbook/chapters ../handbook/gnunet.texi > gnunet-documentation.7
16
20CLEANFILES += gnunet-documentation.7 gnunet-c-tutorial.7 17CLEANFILES += gnunet-documentation.7 gnunet-c-tutorial.7
21endif 18endif
22 19
20
23html: 21html:
24 $(SH) $(srcdir)/produce_html.sh 22 $(SH) $(srcdir)/produce_html.sh
25 23
@@ -77,5 +75,4 @@ endif
77 75
78EXTRA_DIST = ${man_MANS} \ 76EXTRA_DIST = ${man_MANS} \
79 gnunet.conf.5.in \ 77 gnunet.conf.5.in \
80 texi2mdoc-generation.sh \
81 README 78 README
diff --git a/doc/man/texi2mdoc-generation.sh b/doc/man/texi2mdoc-generation.sh
deleted file mode 100755
index b88987cda..000000000
--- a/doc/man/texi2mdoc-generation.sh
+++ /dev/null
@@ -1,15 +0,0 @@
1#!/bin/sh
2# This script is in the public-domain.
3# GNUnet e.V. 2019
4#
5# Commentary: generate texi2mdoc output. This would be easier with
6# bmake / BSDmake, oh well.
7#
8# Excercise for future readers: don't fix this.
9
10# echo $(pwd)
11cd ../tutorial
12texi2mdoc -I$(pwd):$(pwd)/chapters gnunet-tutorial.texi > ../man/gnunet-c-tutorial.7
13# echo $(pwd)
14cd ../handbook
15texi2mdoc -I$(pwd):$(pwd)/chapters gnunet.texi > ../man/gnunet-documentation.7