commit d6e6350523c703aab81496a89775c96866c1e935 from: Alexander Barton date: Fri Jul 22 21:00:22 2005 UTC New subdirectory "src" for the source code documentation, and new make target "srcdoc" to generate the documentation using Doxygen. commit - 7036111a6c567d7283c43de12f32ce1083413315 commit + d6e6350523c703aab81496a89775c96866c1e935 blob - 3c609a9e137f9931b4a0a9e653c46d1ed23b95cc blob + d40be81529f2172d557da00847e97ea4dd8878b4 --- doc/Makefile.am +++ doc/Makefile.am @@ -9,9 +9,11 @@ # Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste # der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS. # -# $Id: Makefile.am,v 1.19 2005/07/08 16:19:03 alex Exp $ +# $Id: Makefile.am,v 1.20 2005/07/22 21:00:22 alex Exp $ # +SUBDIRS = src + EXTRA_DIST = CVS.txt FAQ.txt Protocol.txt Platforms.txt README-AUX.txt \ README-BeOS.txt RFC.txt Zeroconf.txt sample-ngircd.conf @@ -39,4 +41,7 @@ install-data-hook: uninstall-hook: rm -rf $(DESTDIR)$(docdir) +srcdoc: + make -C src srcdoc + # -eof-