From 989312339ea2e16579803a48700628c5469e327a Mon Sep 17 00:00:00 2001 From: Tar Committer Date: Mon, 12 Jan 2004 03:17:26 +0000 Subject: Imported from rancid-2.3.rc1.tar.gz. --- man/Makefile.am | 71 ++++++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 60 insertions(+), 11 deletions(-) (limited to 'man/Makefile.am') diff --git a/man/Makefile.am b/man/Makefile.am index d499951..4be3c26 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -1,24 +1,73 @@ ## Process this file with automake to produce Makefile.in ## A Makefile.in is supplied, in case you do not have automake. +## $Id: Makefile.am,v 1.44 2004/01/11 06:12:35 hank Exp $ +## +## Copyright (C) 1997-2004 by Terrapin Communications, Inc. +## All rights reserved. +## +## This software may be freely copied, modified and redistributed +## without fee for non-commerical purposes provided that this license +## remains intact and unmodified with any RANCID distribution. +## +## There is no warranty or other guarantee of fitness of this software. +## It is provided solely "as is". The author(s) disclaim(s) all +## responsibility and liability with respect to this software's usage +## or its effect upon hardware, computer systems, other software, or +## anything else. +## +## Except where noted otherwise, rancid was written by and is maintained by +## Henry Kilmer, John Heasley, Andrew Partan, Pete Whiting, and Austin Schutz. +## + AUTOMAKE_OPTIONS=foreign no-dependencies @SET_MAKE@ -man_gen_MANS = env.5 lg.conf.5 lg_intro.1 -man_nogen_MANS = do-diffs.1 alogin.1 blogin.1 clogin.1 control_rancid.1 \ - create_cvs.1 rancid.1 \ +man_gen_MANS = lg.conf.5 rancid.conf.5 lg_intro.1 +man_nogen_MANS = alogin.1 blogin.1 clogin.1 control_rancid.1 \ + cssrancid.1 rancid.1 \ rancid_intro.1 cloginrc.5 router.db.5 \ - elogin.1 f10rancid.1 flogin.1 hlogin.1 hrancid.1 jlogin.1 \ - jrancid.1 f10rancid.1 francid.1 cat5rancid.1 erancid.1 \ - mrancid.1 par.1 xrancid.1 + elogin.1 f10rancid.1 flogin.1 fnrancid.1 \ + hlogin.1 hrancid.1 htlogin.1 htrancid.1 jlogin.1 \ + jrancid.1 jerancid.1 f10rancid.1 francid.1 cat5rancid.1 \ + erancid.1 mrancid.1 nlogin.1 nrancid.1 nslogin.1 nsrancid.1 \ + par.1 prancid.1 \ + rancid-cvs.1 rancid-run.1 rivlogin.1 rivrancid.1 \ + tntlogin.1 tntrancid.1 xrancid.1 zrancid.1 + +man_MANS = $(man_nogen_MANS) $(man_gen_MANS) + +EXTRA_DIST = $(man_nogen_MANS) $(man_gen_MANS:%=%.in) -man_MANS = $(man_gen_MANS) $(man_nogen_MANS) +CLEANFILES = $(man_gen_MANS) -EXTRA_DIST = $(man_nogen_MANS) +# auto_edit does the autoconf variable substitution. This allows the +# substitution to have the full expansion of the variables, e.g.: $sysconfdir +# will be /prefix/etc instead of ${prefix}/etc. +# +# This is a bit of a PITA, but is the method recommended by the autoconf +# documentation. +auto_edit = sed \ + -e 's,@prefix\@,$(prefix),g' \ + -e 's,@bindir\@,$(bindir),g' \ + -e 's,@localstatedir\@,$(localstatedir),g' \ + -e 's,@sysconfdir\@,$(sysconfdir),g' \ + -e 's,@pkgdatadir\@,$(sysconfdir),g' \ + -e 's,@ADMINMAILPLUS\@,$(ADMINMAILPLUS),g' \ + -e 's,@MAILPLUS\@,$(MAILPLUS),g' -#CLEANFILES = Makefile env.5 lg.conf.5 lg_intro.1 +lg.conf.5: Makefile $(srcdir)/lg.conf.5.in + rm -f lg.conf.5 lg.conf.5.tmp; \ + $(auto_edit) $(srcdir)/lg.conf.5.in >lg.conf.5.tmp; \ + mv lg.conf.5.tmp lg.conf.5 -all: +lg_intro.1: Makefile $(srcdir)/lg_intro.1.in + rm -f lg_intro.1 lg_intro.1.tmp; \ + $(auto_edit) $(srcdir)/lg_intro.1.in >lg_intro.1.tmp; \ + mv lg_intro.1.tmp lg_intro.1 -distclean: clean +rancid.conf.5: Makefile $(srcdir)/rancid.conf.5.in + rm -f rancid.conf.5 rancid.conf.5.tmp; \ + $(auto_edit) $(srcdir)/rancid.conf.5.in >rancid.conf.5.tmp; \ + mv rancid.conf.5.tmp rancid.conf.5 -- cgit