]> arthur.barton.de Git - ngircd-alex.git/blob - Makefile.am
Debian packages: build "-full" and "-full-dbg" with support for PAM
[ngircd-alex.git] / Makefile.am
1 #
2 # ngIRCd -- The Next Generation IRC Daemon
3 # Copyright (c)2001-2008 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
12 AUTOMAKE_OPTIONS = gnu
13
14 SUBDIRS = doc src man contrib
15
16 clean-local:
17         rm -f build-stamp*
18         rm -rf ngircd.dest
19
20 maintainer-clean-local:
21         rm -rf autom4te.cache
22         rm -f Makefile.in Makefile aclocal.m4 configure
23         rm -f mkinstalldirs missing depcomp install-sh
24         rm -f config.log debian
25
26 testsuite:
27         make -C src/testsuite check
28
29 lint:
30         make -C src/ngircd lint
31
32 srcdoc:
33         make -C doc srcdoc
34
35 have-xcodebuild:
36         @xcodebuild -project contrib/MacOSX/ngIRCd.xcodeproj -list \
37          >/dev/null 2>&1 \
38          || ( echo; echo "Error: \"xcodebuild\" not found!"; echo; exit 1 )
39
40 xcode: have-xcodebuild
41         rel=`grep AC_INIT configure.in | cut -d' ' -f2 | cut -d')' -f1`; \
42          def="GCC_PREPROCESSOR_DEFINITIONS=\"VERSION=\\\"$$rel\\\"\""; \
43          xcodebuild -project contrib/MacOSX/ngIRCd.xcodeproj -alltargets \
44          -configuration Default $$def build
45
46 xcode-clean: have-xcodebuild
47         xcodebuild -project contrib/MacOSX/ngIRCd.xcodeproj -alltargets \
48          -configuration Default clean
49         rm -fr contrib/MacOSX/build
50
51 rpm: distcheck
52         rpm -ta ngircd-*.tar.gz
53
54 deb:
55         [ -f debian/rules ] || ln -s contrib/Debian debian
56         dpkg-buildpackage -rfakeroot -i
57
58 osxpkg: have-xcodebuild
59         @packagemaker >/dev/null 2>&1; [ $$? -le 1 ] \
60          || ( echo; echo "Error: \"packagemaker\" not found!"; echo; exit 2)
61         make clean
62         ./configure --prefix=/opt/ngircd
63         make xcode
64         make -C contrib/MacOSX de.barton.ngircd.plist
65         mkdir -p ngircd.dest/opt/ngircd/sbin
66         DESTDIR="$$PWD/ngircd.dest" make -C doc install
67         DESTDIR="$$PWD/ngircd.dest" make -C contrib install
68         DESTDIR="$$PWD/ngircd.dest" make -C man install
69         cp contrib/MacOSX/build/Default/ngIRCd \
70          ngircd.dest/opt/ngircd/sbin/ngircd
71         rm ngircd.dest/opt/ngircd/etc/ngircd.conf
72         echo "Have a nice day IRCing!" >ngircd.dest/opt/ngircd/etc/ngircd.motd
73         chmod -R a-s,og-w,a+rX ngircd.dest
74         cd contrib/MacOSX && packagemaker \
75          --doc ngIRCd.pmdoc \
76          --out ../../$(distdir).mpkg
77         rm -f $(distdir).mpkg.zip
78         zip -ro9 $(distdir).mpkg.zip $(distdir).mpkg
79         rm -rf ngircd.dest $(distdir).mpkg
80
81 # -eof-