Annotation of ircnowd/man/Makefile.am, Revision 1.1
1.1 ! tomglok 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:
! 12: TEMPLATE_MANS = ngircd.conf.5.tmpl ngircd.8.tmpl
! 13:
! 14: SUFFIXES = .tmpl .
! 15:
! 16: .tmpl:
! 17: $(AM_V_GEN)sed \
! 18: -e "s@:SBINDIR:@${sbindir}@" \
! 19: -e "s@:BINDIR:@${bindir}@" \
! 20: -e "s@:ETCDIR:@${sysconfdir}@" \
! 21: <$< >$@
! 22:
! 23: man_MANS = ngircd.conf.5 ngircd.8
! 24:
! 25: CLEANFILES = $(man_MANS)
! 26:
! 27: EXTRA_DIST = $(TEMPLATE_MANS)
! 28:
! 29: maintainer-clean-local:
! 30: rm -f Makefile Makefile.in
! 31:
! 32: # -eof-
CVSweb