X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=Makefile.am;h=0fd06222848b5bda97a73117ee0e363beaec6633;hp=2e5de8db3a5449db4049a0dc7e764003051676f6;hb=5468ba37446a85bfb8a84eed74bf6c091156f682;hpb=6e03626eed3a68de359cb80a36ed0ad5332d93fb diff --git a/Makefile.am b/Makefile.am index 2e5de8db..0fd06222 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,26 +8,74 @@ # (at your option) any later version. # Please read the file COPYING, README and AUTHORS for more information. # -# $Id: Makefile.am,v 1.11 2003/07/09 21:16:33 alex Exp $ -# AUTOMAKE_OPTIONS = gnu -SUBDIRS = doc MacOSX src man contrib debian +SUBDIRS = doc src man contrib + +clean-local: + rm -f build-stamp* + rm -rf ngircd.dest maintainer-clean-local: rm -rf autom4te.cache rm -f Makefile.in Makefile aclocal.m4 configure rm -f mkinstalldirs missing depcomp install-sh - rm -f config.log + rm -f config.log debian + +testsuite: + make -C src/testsuite check lint: make -C src/ngircd lint +srcdoc: + make -C doc srcdoc + +have-xcodebuild: + @xcodebuild -project contrib/MacOSX/ngIRCd.xcodeproj -list \ + >/dev/null 2>&1 \ + || ( echo; echo "Error: \"xcodebuild\" not found!"; echo; exit 1 ) + +xcode: have-xcodebuild + rel=`grep AC_INIT configure.in | cut -d' ' -f2 | cut -d')' -f1`; \ + def="GCC_PREPROCESSOR_DEFINITIONS=\"VERSION=\\\"$$rel\\\"\""; \ + xcodebuild -project contrib/MacOSX/ngIRCd.xcodeproj -alltargets \ + -configuration Default $$def build + +xcode-clean: have-xcodebuild + xcodebuild -project contrib/MacOSX/ngIRCd.xcodeproj -alltargets \ + -configuration Default clean + rm -fr contrib/MacOSX/build + rpm: distcheck rpm -ta ngircd-*.tar.gz deb: - dpkg-buildpackage -rfakeroot + [ -f debian/rules ] || ln -s contrib/Debian debian + dpkg-buildpackage -rfakeroot -i + +osxpkg: have-xcodebuild + @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-