## Process this file with automake to produce Makefile.in # $CVSHeader: mkamm/scripts/cvsweb-converters/Makefile.am,v 1.15 2006/06/22 07:46:18 martin Exp $ bin_SCRIPTS = cvsrdiff2cvsweb.pl cvsuplog2cvsweb.pl commitlog2cvsweb.pl noinst_SCRIPTS = commitlog2cvsweb-check.pl sysconf_DATA = cvsweb-converters.conf.sample EXTRA_DIST = $(sysconf_DATA) MD5 $(DOCS) CLEANFILES = MD5 $(DOCS) ## this software is not part of GNU AUTOMAKE_OPTIONS = foreign no-dependencies dist-bzip2 no-dist-gzip \ check-news 1.1 # install the scripts without the '.pl' suffix transform = s;\.pl$$;; # Delete _all_ files that can be regenerated # Recreate with: aclocal && automake -a && autoconf && ./configure realclean: maintainer-clean rm -f *~ *.bak rm -rf autom4te*.cache rm -f install-sh missing mkinstalldirs rm -f Makefile.in aclocal.m4 configure config.status config.log # Optionally tidy the Perl scripts. tidy: $(PERLTIDY) $(PERLTIDY) -b *.pl.in # Optional MD5 checksums. MD5FILES = $(DIST_COMMON) $(sysconf_DATA) $(DOCS) MD5: $(MD5FILES) -(cd $(srcdir) && @MD5SUM@ -- $(MD5FILES) \ || @MD5@ -r -- $(MD5FILES)) >$@ DOCS = $(MANPAGES) $(PSPAGES) $(HTMLPAGES) MANPAGES = cvsrdiff2cvsweb.1 cvsuplog2cvsweb.1 commitlog2cvsweb.1 PSPAGES = cvsrdiff2cvsweb.ps cvsuplog2cvsweb.ps commitlog2cvsweb.ps HTMLPAGES = cvsrdiff2cvsweb.html cvsuplog2cvsweb.html commitlog2cvsweb.html # Suffix rules to generate formatted docs .pl.1: @POD2MAN@ $? >$@ .1.ps: @GROFF@ -m man -T ps $? >$@ .1.html: @GROFF@ -m man -T html $? >$@ ##EOF##