From: yamaoka Date: Tue, 10 Dec 2002 01:28:56 +0000 (+0000) Subject: * texi/Makefile.in (%.info, .texi): Conceal control procedures. X-Git-Tag: t-gnus-6_15_10-00-quimby~45 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=f1f07e9e01047adff983d826bd3a14ad72ac5f4d;p=elisp%2Fgnus.git- * texi/Makefile.in (%.info, .texi): Conceal control procedures. --- diff --git a/ChangeLog b/ChangeLog index 7fc2613..15c2b2b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2002-12-10 Katsumi Yamaoka + + * texi/Makefile.in (%.info, .texi): Conceal control procedures. + 2002-12-05 Kai Gro,A_(Bjohann * etc/smilies/*.pbm: Made them binary. diff --git a/texi/Makefile.in b/texi/Makefile.in index 06b8989..3ef328f 100644 --- a/texi/Makefile.in +++ b/texi/Makefile.in @@ -41,32 +41,36 @@ message-ja.info: message-ja.texi most: texi2latex.elc latex latexps %-ja: %-ja.texi - rm -f $@; \ + rm -f $@ $(EMACSINFO) $< %-ja.info: %-ja.texi - rm -f $@; \ + rm -f $@ $(EMACSINFO) $< t %.info: %.texi - if test "x$(MAKEINFO)" = "xno" \ + @if test "x$(MAKEINFO)" = "xno" \ -o "$<" = "gnus-ja.texi" \ -o "$<" = "message-ja.texi"; then \ + echo "rm -f $@"; echo "$(EMACSINFO) $< t"; \ rm -f $@; \ $(EMACSINFO) $< t; \ else \ + echo "$(MAKEINFO) -I $(srcdir) -o $@ $<"; \ $(MAKEINFO) -I $(srcdir) -o $@ $<; \ fi .SUFFIXES: .texi .dvi .ps .pdf .latexi .dvi-x .pdf-x .texi: - if test "x$(MAKEINFO)" = "xno" \ + @if test "x$(MAKEINFO)" = "xno" \ -o "$<" = "gnus-ja.texi" \ -o "$<" = "message-ja.texi"; then \ + echo "rm -f $@"; echo "$(EMACSINFO) $<"; \ rm -f $@; \ $(EMACSINFO) $<; \ else \ + echo "$(MAKEINFO) -I $(srcdir) -o $* $<"; \ $(MAKEINFO) -I $(srcdir) -o $* $<; \ fi