Blame


1 7036111a 2005-07-22 alex #
2 7036111a 2005-07-22 alex # ngIRCd -- The Next Generation IRC Daemon
3 3d0ab6bd 2006-04-08 alex # Copyright (c)2001-2006 Alexander Barton (alex@barton.de)
4 7036111a 2005-07-22 alex #
5 7036111a 2005-07-22 alex # This program is free software; you can redistribute it and/or modify
6 7036111a 2005-07-22 alex # it under the terms of the GNU General Public License as published by
7 7036111a 2005-07-22 alex # the Free Software Foundation; either version 2 of the License, or
8 7036111a 2005-07-22 alex # (at your option) any later version.
9 7036111a 2005-07-22 alex # Please read the file COPYING, README and AUTHORS for more information.
10 7036111a 2005-07-22 alex #
11 40199e0b 2006-12-28 alex # $Id: Makefile.am,v 1.3 2006/12/28 14:04:28 alex Exp $
12 7036111a 2005-07-22 alex #
13 7036111a 2005-07-22 alex
14 3d0ab6bd 2006-04-08 alex maintainer-clean-local:
15 3d0ab6bd 2006-04-08 alex rm -f Makefile Makefile.in
16 3d0ab6bd 2006-04-08 alex
17 7036111a 2005-07-22 alex distclean-local:
18 40199e0b 2006-12-28 alex rm -rf html
19 7036111a 2005-07-22 alex
20 7036111a 2005-07-22 alex srcdoc:
21 7036111a 2005-07-22 alex @doxygen --version >/dev/null 2>&1 \
22 7036111a 2005-07-22 alex || ( echo; echo "Error: \"doxygen\" not found!"; echo; exit 1 )
23 7036111a 2005-07-22 alex doxygen
24 7036111a 2005-07-22 alex
25 7036111a 2005-07-22 alex # -eof-