X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=Makefile.am;h=701bf6b4d1481973ad68c95f506ad3a84cbdc6f7;hp=790f0df0b34c64d51b01c739eeaccffa84570629;hb=97d97ef5c4e0d5494e4b1301903c7730df6421a1;hpb=317841529b31f50ed31c6f2af30edeee0f7e4fae diff --git a/Makefile.am b/Makefile.am index 790f0df0..701bf6b4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ # # ngIRCd -- The Next Generation IRC Daemon -# Copyright (c)2001-2003 by Alexander Barton (alex@barton.de) +# Copyright (c)2001-2008 Alexander Barton (alex@barton.de) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -8,8 +8,6 @@ # (at your option) any later version. # Please read the file COPYING, README and AUTHORS for more information. # -# $Id: Makefile.am,v 1.17 2005/07/22 21:01:52 alex Exp $ -# AUTOMAKE_OPTIONS = gnu @@ -17,6 +15,7 @@ SUBDIRS = doc src man contrib clean-local: rm -f build-stamp* + rm -rf ngircd.dest maintainer-clean-local: rm -rf autom4te.cache @@ -24,6 +23,9 @@ maintainer-clean-local: rm -f mkinstalldirs missing depcomp install-sh rm -f config.log debian +testsuite: + make -C src/testsuite check + lint: make -C src/ngircd lint @@ -31,9 +33,10 @@ srcdoc: make -C doc srcdoc xcode: - @xcodebuild -project contrib/MacOSX/ngIRCd.xcode -list >/dev/null 2>&1 \ + @xcodebuild -project contrib/MacOSX/ngIRCd.xcodeproj -list \ + >/dev/null 2>&1 \ || ( echo; echo "Error: \"xcodebuild\" not found!"; echo; exit 1 ) - xcodebuild -project contrib/MacOSX/ngIRCd.xcode -alltargets \ + xcodebuild -project contrib/MacOSX/ngIRCd.xcodeproj -alltargets \ -buildstyle Development rpm: distcheck @@ -41,6 +44,29 @@ rpm: distcheck deb: [ -f debian/rules ] || ln -s contrib/Debian debian - dpkg-buildpackage -rfakeroot + dpkg-buildpackage -rfakeroot -i + +osxpkg: + @packagemaker >/dev/null 2>&1; [ $$? -ge 1 ] \ + || ( echo; echo "Error: \"packagemaker\" not found!"; echo; exit 2) + make clean + ./configure --prefix=/opt/ngircd + make xcode + make -C contrib/MacOSX de.barton.ngircd.plist + mkdir -p ngircd.dest/opt/ngircd/sbin + DESTDIR="$$PWD/ngircd.dest" make -C doc install + DESTDIR="$$PWD/ngircd.dest" make -C contrib install + DESTDIR="$$PWD/ngircd.dest" make -C man install + cp contrib/MacOSX/build/Default/ngIRCd \ + ngircd.dest/opt/ngircd/sbin/ngircd + rm ngircd.dest/opt/ngircd/etc/ngircd.conf + echo "Have a nice day IRCing!" >ngircd.dest/opt/ngircd/etc/ngircd.motd + chmod -R a-s,og-w,a+rX ngircd.dest + cd contrib/MacOSX && packagemaker \ + --doc ngIRCd.pmdoc \ + --out ../../$(distdir).mpkg + rm -f $(distdir).mpkg.zip + zip -ro9 $(distdir).mpkg.zip $(distdir).mpkg + rm -rf ngircd.dest $(distdir).mpkg # -eof-