Makefile.am 817 B

1234567891011121314151617181920212223242526272829303132
  1. #
  2. # ngIRCd -- The Next Generation IRC Daemon
  3. # Copyright (c)2001-2012 Alexander Barton (alex@barton.de) and Contributors
  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. TEMPLATE_MANS = ngircd.conf.5.tmpl ngircd.8.tmpl
  12. SUFFIXES = .tmpl .
  13. .tmpl:
  14. $(AM_V_GEN)sed \
  15. -e "s@:SBINDIR:@${sbindir}@" \
  16. -e "s@:BINDIR:@${bindir}@" \
  17. -e "s@:ETCDIR:@${sysconfdir}@" \
  18. <$< >$@
  19. man_MANS = ngircd.conf.5 ngircd.8
  20. CLEANFILES = $(man_MANS)
  21. EXTRA_DIST = $(TEMPLATE_MANS)
  22. maintainer-clean-local:
  23. rm -f Makefile Makefile.in
  24. # -eof-