summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2005-04-09 12:22:41 +0000
committerAlexander Barton <alex@barton.de>2005-04-09 12:22:41 +0000
commit811ac48bd2bfb919a90c44eb7d3fff11da5668d4 (patch)
treeb2e0f2724d41fd8531678a42d6ced26f3fcf41f4 /src
parente936a79f6b831ab012e5819dee5eceb72f86ec2e (diff)
downloadngircd-811ac48bd2bfb919a90c44eb7d3fff11da5668d4.tar.gz
ngircd-811ac48bd2bfb919a90c44eb7d3fff11da5668d4.zip
Added new target "srcdoc" to generate the Doxygen source documentation.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index a24e96ce..92f1b2e7 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -8,7 +8,7 @@
 # (at your option) any later version.
 # Please read the file COPYING, README and AUTHORS for more information.
 #
-# $Id: Makefile.am,v 1.5 2003/01/13 12:20:16 alex Exp $
+# $Id: Makefile.am,v 1.6 2005/04/09 12:22:41 alex Exp $
 #
 
 SUBDIRS = portab tool ngircd testsuite
@@ -16,4 +16,9 @@ SUBDIRS = portab tool ngircd testsuite
 maintainer-clean-local:
 	rm -f Makefile Makefile.in config.h config.h.in stamp-h.in
 
+srcdoc:
+	@doxygen --version >/dev/null 2>&1 \
+	 || ( echo; echo "Error: \"doxygen\" not found!"; echo; exit 1 )
+	doxygen
+
 # -eof-