Makefile.am 1.2 KB

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