[lwatch-cvs] files/doc Makefile.in,1.12,1.13 lwatch.1.in,1.1,1.2
Brought to you by:
arturcz
|
From: <ar...@us...> - 2003-03-17 15:31:06
|
Update of /cvsroot/lwatch/files/doc In directory sc8-pr-cvs1:/tmp/cvs-serv2572/doc Modified Files: Makefile.in lwatch.1.in Log Message: - automagically regenerated Index: Makefile.in =================================================================== RCS file: /cvsroot/lwatch/files/doc/Makefile.in,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** Makefile.in 15 Mar 2003 18:45:30 -0000 1.12 --- Makefile.in 17 Mar 2003 15:31:01 -0000 1.13 *************** *** 52,59 **** DEFS = @DEFS@ DEPDIR = @DEPDIR@ - DISTMAN = @DISTMAN@ - DISTRO_FALSE = @DISTRO_FALSE@ - DISTRO_TRUE = @DISTRO_TRUE@ - DOCMAN = @DOCMAN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ --- 52,55 ---- *************** *** 76,81 **** LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ - MAKE_MAN_FALSE = @MAKE_MAN_FALSE@ - MAKE_MAN_TRUE = @MAKE_MAN_TRUE@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ --- 72,75 ---- *************** *** 116,123 **** sysconfdir = @sysconfdir@ target_alias = @target_alias@ ! man_MANS = @DOCMAN@ ! dist_man_MANS = @DISTMAN@ EXTRA_DIST = lwatch.sgml conf.ent.in ! CLEANFILES = lwatch.1 conf.ent @DOCMAN@ @DISTMAN@ subdir = doc mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs --- 110,117 ---- sysconfdir = @sysconfdir@ target_alias = @target_alias@ ! man_MANS = lwatch.1 ! dist_man_MANS = lwatch.1.in EXTRA_DIST = lwatch.sgml conf.ent.in ! CLEANFILES = lwatch.1 conf.ent subdir = doc mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs *************** *** 125,128 **** --- 119,125 ---- CONFIG_CLEAN_FILES = DIST_SOURCES = + + NROFF = nroff + MANS = $(dist_man_MANS) $(man_MANS) DIST_COMMON = $(dist_man_MANS) Makefile.am Makefile.in all: all-am *************** *** 135,138 **** --- 132,229 ---- cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe) uninstall-info-am: + + man1dir = $(mandir)/man1 + install-man1: $(man1_MANS) $(man_MANS) + @$(NORMAL_INSTALL) + $(mkinstalldirs) $(DESTDIR)$(man1dir) + @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \ + l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ + for i in $$l2; do \ + case "$$i" in \ + *.1*) list="$$list $$i" ;; \ + esac; \ + done; \ + for i in $$list; do \ + if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \ + else file=$$i; fi; \ + ext=`echo $$i | sed -e 's/^.*\\.//'`; \ + case "$$ext" in \ + 1*) ;; \ + *) ext='1' ;; \ + esac; \ + inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ + inst=`echo $$inst | sed -e 's/^.*\///'`; \ + inst=`echo $$inst | sed '$(transform)'`.$$ext; \ + echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst"; \ + $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst; \ + done + uninstall-man1: + @$(NORMAL_UNINSTALL) + @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \ + l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ + for i in $$l2; do \ + case "$$i" in \ + *.1*) list="$$list $$i" ;; \ + esac; \ + done; \ + for i in $$list; do \ + ext=`echo $$i | sed -e 's/^.*\\.//'`; \ + case "$$ext" in \ + 1*) ;; \ + *) ext='1' ;; \ + esac; \ + inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ + inst=`echo $$inst | sed -e 's/^.*\///'`; \ + inst=`echo $$inst | sed '$(transform)'`.$$ext; \ + echo " rm -f $(DESTDIR)$(man1dir)/$$inst"; \ + rm -f $(DESTDIR)$(man1dir)/$$inst; \ + done + + manidir = $(mandir)/mani + install-mani: $(mani_MANS) $(man_MANS) + @$(NORMAL_INSTALL) + $(mkinstalldirs) $(DESTDIR)$(manidir) + @list='$(mani_MANS) $(dist_mani_MANS) $(nodist_mani_MANS)'; \ + l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ + for i in $$l2; do \ + case "$$i" in \ + *.i*) list="$$list $$i" ;; \ + esac; \ + done; \ + for i in $$list; do \ + if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \ + else file=$$i; fi; \ + ext=`echo $$i | sed -e 's/^.*\\.//'`; \ + case "$$ext" in \ + i*) ;; \ + *) ext='i' ;; \ + esac; \ + inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ + inst=`echo $$inst | sed -e 's/^.*\///'`; \ + inst=`echo $$inst | sed '$(transform)'`.$$ext; \ + echo " $(INSTALL_DATA) $$file $(DESTDIR)$(manidir)/$$inst"; \ + $(INSTALL_DATA) $$file $(DESTDIR)$(manidir)/$$inst; \ + done + uninstall-mani: + @$(NORMAL_UNINSTALL) + @list='$(mani_MANS) $(dist_mani_MANS) $(nodist_mani_MANS)'; \ + l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ + for i in $$l2; do \ + case "$$i" in \ + *.i*) list="$$list $$i" ;; \ + esac; \ + done; \ + for i in $$list; do \ + ext=`echo $$i | sed -e 's/^.*\\.//'`; \ + case "$$ext" in \ + i*) ;; \ + *) ext='i' ;; \ + esac; \ + inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ + inst=`echo $$inst | sed -e 's/^.*\///'`; \ + inst=`echo $$inst | sed '$(transform)'`.$$ext; \ + echo " rm -f $(DESTDIR)$(manidir)/$$inst"; \ + rm -f $(DESTDIR)$(manidir)/$$inst; \ + done tags: TAGS TAGS: *************** *** 173,184 **** fi; \ done - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" distdir="$(distdir)" \ - dist-hook check-am: all-am check: check-am ! all-am: Makefile installdirs: install: install-am --- 264,273 ---- fi; \ done check-am: all-am check: check-am ! all-am: Makefile $(MANS) installdirs: + $(mkinstalldirs) $(DESTDIR)$(man1dir) $(DESTDIR)$(manidir) install: install-am *************** *** 223,227 **** info-am: ! install-data-am: install-exec-am: --- 312,316 ---- info-am: ! install-data-am: install-man install-exec-am: *************** *** 229,233 **** install-info: install-info-am ! install-man: installcheck-am: --- 318,322 ---- install-info: install-info-am ! install-man: install-man1 install-mani installcheck-am: *************** *** 249,253 **** ps-am: ! uninstall-am: uninstall-info-am .PHONY: all all-am check check-am clean clean-generic distclean \ --- 338,344 ---- ps-am: ! uninstall-am: uninstall-info-am uninstall-man ! ! uninstall-man: uninstall-man1 uninstall-mani .PHONY: all all-am check check-am clean clean-generic distclean \ *************** *** 255,278 **** install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am install-man \ ! install-strip installcheck installcheck-am installdirs \ ! maintainer-clean maintainer-clean-generic mostlyclean \ ! mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am \ ! uninstall-info-am ! @DISTRO_TRUE@@MAKE_MAN_TRUE@lwatch.1: lwatch.1.in Makefile ! @DISTRO_TRUE@@MAKE_MAN_TRUE@ sed "s#@CONFDIR\@#$(sysconfdir)#g" < lwatch.1.in > lwatch.1 ! @DISTRO_FALSE@@MAKE_MAN_TRUE@lwatch.1: lwatch.sgml conf.ent ! @DISTRO_FALSE@@MAKE_MAN_TRUE@ $(dbook2man) lwatch.sgml > lwatch.1 ! @DISTRO_FALSE@@MAK...@co...: conf.ent.in Makefile ! @DISTRO_FALSE@@MAKE_MAN_TRUE@ sed "s#@CONFDIR\@#$(sysconfdir)#g" < conf.ent.in > conf.ent ! @HAVE_D2M_TRUE@@MAK...@lw...: lwatch.sgml conf.ent ! @HAVE_D2M_TRUE@@MAKE_MAN_FALSE@ $(dbook2man) lwatch.sgml > lwatch.1.in ! @HAVE_D2M_TRUE@@MAK...@co...: conf.ent.in ! @HAVE_D2M_TRUE@@MAKE_MAN_FALSE@ cp conf.ent.in conf.ent ! @HAVE_D2M_FALSE@@MAKE_MAN_FALSE@dist-hook: ! @HAVE_D2M_FALSE@@MAKE_MAN_FALSE@ $(error Cannot prepare package, there is no docbook-to-man converter) # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 346,367 ---- install-am install-data install-data-am install-exec \ install-exec-am install-info install-info-am install-man \ ! install-man1 install-mani install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ ! pdf-am ps ps-am uninstall uninstall-am uninstall-info-am \ ! uninstall-man uninstall-man1 uninstall-mani ! @HAVE_D2M_TRUE@lwatch.1: lwatch.sgml conf.ent.in ! @HAVE_D2M_TRUE@ sed "s#@CONFDIR\@#$(sysconfdir)#g" < conf.ent.in > conf.ent ! @HAVE_D2M_TRUE@ $(dbook2man) lwatch.sgml > lwatch.1 ! @HAVE_D2M_FALSE@lwatch.1: lwatch.1.in Makefile ! @HAVE_D2M_FALSE@ sed "s#@CONFDIR\@#$(sysconfdir)#g" < lwatch.1.in > lwatch.1 ! lwatch.1.in: lwatch.sgml conf.ent.in ! cp conf.ent.in conf.ent ! $(dbook2man) lwatch.sgml > lwatch.1.in ! @HAVE_D2M_TRUE@.PHONY: lwatch.1.in # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. Index: lwatch.1.in =================================================================== RCS file: /cvsroot/lwatch/files/doc/lwatch.1.in,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** lwatch.1.in 17 Mar 2003 14:53:59 -0000 1.1 --- lwatch.1.in 17 Mar 2003 15:31:01 -0000 1.2 *************** *** 129,131 **** option) any later version. ! ...\" created by instant / docbook-to-man, Mon 17 Mar 2003, 15:39 --- 129,131 ---- option) any later version. ! ...\" created by instant / docbook-to-man, Mon 17 Mar 2003, 16:23 |