Makefile.am 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. # $Id: Makefile.am,v 1.3 2008/02/17 15:31:15 alex Exp $
  12. #
  13. SUBDIRS = ngIRCd.xcodeproj
  14. EXTRA_DIST = de.barton.ngircd.plist.tmpl config.h cvs-version.h
  15. SUFFIXES = .tmpl .
  16. .tmpl:
  17. sed \
  18. -e s@:SBINDIR:@${sbindir}@ \
  19. <$< >$@
  20. install-data-local:
  21. [ `uname -s` != "Darwin" ] || make install-sys-darwin
  22. install-sys-darwin:
  23. @if [ `id -u` -eq 0 ]; then \
  24. make install-sys-darwin-root; \
  25. else \
  26. echo; \
  27. echo " ** NOTE: Not installing with root privileges, so the LaunchDaemon script"; \
  28. echo " ** \"/Library/LaunchDaemons/de.barton.ngircd.plist\" can't be installed/updated!"; \
  29. echo; \
  30. fi
  31. install-sys-darwin-root: de.barton.ngircd.plist
  32. install -c -m 644 -b -o root -g wheel de.barton.ngircd.plist /Library/LaunchDaemons/de.barton.ngircd.plist
  33. @echo
  34. @echo " ** \"/Library/LaunchDaemons/de.barton.ngircd.plist\" has been installed,"
  35. @echo " ** but is disabled. Use launchctl(8) to enable/run ngIRCd on Darwin/Mac OS X."
  36. @echo
  37. clean-local:
  38. rm -rf build
  39. maintainer-clean-local:
  40. rm -f Makefile Makefile.in
  41. # -eof-