From f1f07e9e01047adff983d826bd3a14ad72ac5f4d Mon Sep 17 00:00:00 2001 From: yamaoka Date: Tue, 10 Dec 2002 01:28:56 +0000 Subject: [PATCH] * texi/Makefile.in (%.info, .texi): Conceal control procedures. --- ChangeLog | 4 ++++ texi/Makefile.in | 12 ++++++++---- 2 files changed, 12 insertions(+), 4 deletions(-) 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 -- 1.7.10.4