]> arthur.barton.de Git - ngircd-alex.git/blob - Makefile.am
do not call Conn_Close when io_event_create fails
[ngircd-alex.git] / Makefile.am
1 #
2 # ngIRCd -- The Next Generation IRC Daemon
3 # Copyright (c)2001-2003 by Alexander Barton (alex@barton.de)
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 # Please read the file COPYING, README and AUTHORS for more information.
10 #
11 # $Id: Makefile.am,v 1.17 2005/07/22 21:01:52 alex Exp $
12 #
13
14 AUTOMAKE_OPTIONS = gnu
15
16 SUBDIRS = doc src man contrib
17
18 clean-local:
19         rm -f build-stamp*
20
21 maintainer-clean-local:
22         rm -rf autom4te.cache
23         rm -f Makefile.in Makefile aclocal.m4 configure
24         rm -f mkinstalldirs missing depcomp install-sh
25         rm -f config.log debian
26
27 lint:
28         make -C src/ngircd lint
29
30 srcdoc:
31         make -C doc srcdoc
32
33 xcode:
34         @xcodebuild -project contrib/MacOSX/ngIRCd.xcode -list >/dev/null 2>&1 \
35          || ( echo; echo "Error: \"xcodebuild\" not found!"; echo; exit 1 )
36         xcodebuild -project contrib/MacOSX/ngIRCd.xcode -alltargets \
37          -buildstyle Development
38
39 rpm: distcheck
40         rpm -ta ngircd-*.tar.gz
41
42 deb:
43         [ -f debian/rules ] || ln -s contrib/Debian debian
44         dpkg-buildpackage -rfakeroot
45
46 # -eof-