summaryrefslogtreecommitdiffstats
path: root/doxygen
diff options
context:
space:
mode:
authorDuncan Roe <duncan_roe@optusnet.com.au>2020-09-30 14:46:03 +1000
committerPablo Neira Ayuso <pablo@netfilter.org>2020-09-30 12:01:35 +0200
commite1ad12ad063a85cd28cb7067aa60c121438dd46e (patch)
tree7e41d23a9b868079caa048f636b2f014a99b71b0 /doxygen
parent67f16b1a9e578bf2796cb5d4c7057ca984df3ecb (diff)
doc: build: Reduce size of doxygen.cfg and doxygen build o/p
doxygen.cfg only needs to contain non-default options. Removing other options shaves 4KB (off a 5KB file). Also remove options that are obsolete at the latest doxygen release: PERL_PATH, MSCGEN_PATH and PAPER_TYPE=a4wide (defaults to a4). While being about it, send doxygen stdout to /dev/null to make (future) warnings easier to see. Signed-off-by: Duncan Roe <duncan_roe@optusnet.com.au> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'doxygen')
-rw-r--r--doxygen/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/doxygen/Makefile.am b/doxygen/Makefile.am
index ef468e0..58d153f 100644
--- a/doxygen/Makefile.am
+++ b/doxygen/Makefile.am
@@ -9,7 +9,7 @@ doc_srcs = $(top_srcdir)/src/libnetfilter_queue.c \
$(top_srcdir)/src/extra/pktbuff.c
doxyfile.stamp: $(doc_srcs) $(top_srcdir)/fixmanpages.sh
- rm -rf html man && cd .. && doxygen doxygen.cfg && ./fixmanpages.sh
+ rm -rf html man && cd .. && doxygen doxygen.cfg >/dev/null && ./fixmanpages.sh
touch doxyfile.stamp
CLEANFILES = doxyfile.stamp