1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
#
# Copyright (c) 2006 Thorsten Kukuk <kukuk@thkukuk.de>
#
AUTOMAKE_OPTIONS = 1.7 gnits
EXTRA_DIST = README locale netgroup netmasks securenets timezone ypserv.conf \
${MANS} ${XMLS}
CLEANFILES = *~
man_MANS = netgroup.5 ypserv.conf.5
XMLS = netgroup.5.xml ypserv.conf.5.xml
if ENABLE_REGENERATE_MAN
%.5: %.5.xml
$(XMLLINT) --nonet --xinclude --postvalid --noout $<
$(XSLTPROC) -o $(srcdir)/$@ --path $(srcdir) --xinclude --nonet http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
endif
|