Makefile.am 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. AUTOMAKE_OPTIONS = gnu
  14. SUBDIRS = doc src man contrib
  15. clean-local:
  16. rm -f build-stamp*
  17. maintainer-clean-local:
  18. rm -rf autom4te.cache
  19. rm -f Makefile.in Makefile aclocal.m4 configure
  20. rm -f mkinstalldirs missing depcomp install-sh
  21. rm -f config.log debian
  22. lint:
  23. make -C src/ngircd lint
  24. srcdoc:
  25. make -C doc srcdoc
  26. xcode:
  27. @xcodebuild -project contrib/MacOSX/ngIRCd.xcode -list >/dev/null 2>&1 \
  28. || ( echo; echo "Error: \"xcodebuild\" not found!"; echo; exit 1 )
  29. xcodebuild -project contrib/MacOSX/ngIRCd.xcode -alltargets \
  30. -buildstyle Development
  31. rpm: distcheck
  32. rpm -ta ngircd-*.tar.gz
  33. deb:
  34. [ -f debian/rules ] || ln -s contrib/Debian debian
  35. dpkg-buildpackage -rfakeroot
  36. # -eof-