Edit

kc3-lang/automake/texinfos.am

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1995-12-05 06:16:51
    Hash : 9eb2ffa7
    Message : Many cleanups. Added --strictness option.

  • texinfos.am
  • .texi.info:
    	$(MAKEINFO) -I$(srcdir) $<
    
    .texi.dvi:
    	TEXINPUTS=$(srcdir):$$TEXINPUTS $(TEXI2DVI) $<
    
    ## Look in both . and srcdir because the info pages might have been
    ## rebuilt in the build directory.  Can't cd to srcdir; that might
    ## break a possible install-sh reference.
    install-info: $(INFO_DEPS)
    	$(top_srcdir)/mkinstalldirs $(infodir)
    	for file in $(INFO_DEPS); do		\
    	  if test -f $$file; then		\
    	    d=.;				\
    	  else					\
    	    d=$(srcdir);			\
    	  fi;					\
    ## This ${...} is in the shell, not in make.
    	  for ifile in $${file}*; do		\
    	    $(INSTALL_DATA) $$d/$$ifile $(infodir)/$$ifile; \
    	  done;					\
    	  $(SHELL) -c 'install-info --version' >/dev/null 2>&1 \
    	    && install-info --infodir=$(infodir) $$d/$$file; \
    	done
    
    uninstall-info:
    	cd $(srcdir) && for file in *.info*; do
    	  rm -f $(infodir)/$$file; \
    	done