From ff4150a0727bcba2d929cbc59e4b6bb41094ef3e Mon Sep 17 00:00:00 2001 From: Brendan Cully Date: Wed, 16 Mar 2005 07:01:59 +0000 Subject: [PATCH] As Ralf Wildenhues noted, the cygwin EXEEXT patch was incomplete. Note to self: avoid patching on short sleep. Starting tomorrow. --- doc/Makefile.in | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/Makefile.in b/doc/Makefile.in index 6a4034e7c..c01fa3d9d 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -66,10 +66,10 @@ topsrcdir_DOCFILES = COPYRIGHT GPL INSTALL ChangeLog \ all: muttrc.man try-html try-txt -try-html: ../makedoc +try-html: ../makedoc$(EXEEXT) test -f manual.html || $(MAKE) manual.html || cp $(srcdir)/manual*.html ./ -try-txt: ../makedoc +try-txt: ../makedoc$(EXEEXT) test -f manual.txt || $(MAKE) manual.txt || cp $(srcdir)/manual.txt ./ install: all instdoc @@ -150,21 +150,21 @@ dist distdir: Makefile $(DISTFILES) || cp -p $$file $(distdir) ; \ done -../makedoc: $(top_srcdir)/makedoc.c +../makedoc$(EXEEXT): $(top_srcdir)/makedoc.c (cd .. && $(MAKE) makedoc$(EXEEXT)) # hack around autoconf mixing up patterns. at = @ -update-doc: ../makedoc stamp-doc-sgml stamp-doc-man manual.txt manual.html +update-doc: ../makedoc$(EXEEXT) stamp-doc-sgml stamp-doc-man manual.txt manual.html -muttrc.man stamp-doc-man: ../makedoc $(top_srcdir)/init.h muttrc.man.head muttrc.man.tail +muttrc.man stamp-doc-man: ../makedoc$(EXEEXT) $(top_srcdir)/init.h muttrc.man.head muttrc.man.tail $(MAKEDOC_CPP) $(top_srcdir)/init.h | ../makedoc -m | \ cat $(srcdir)/muttrc.man.head - $(srcdir)/muttrc.man.tail\ > muttrc.man touch stamp-doc-man -manual.sgml stamp-doc-sgml: ../makedoc $(top_srcdir)/init.h manual.sgml.head manual.sgml.tail $(top_srcdir)/VERSION +manual.sgml stamp-doc-sgml: ../makedoc$(EXEEXT) $(top_srcdir)/init.h manual.sgml.head manual.sgml.tail $(top_srcdir)/VERSION ( sed -e "s/$(at)VERSION$(at)/`cat $(top_srcdir)/VERSION`/" $(srcdir)/manual.sgml.head ;\ $(MAKEDOC_CPP) $(top_srcdir)/init.h | ../makedoc -s ) | \ cat - $(srcdir)/manual.sgml.tail > manual.sgml -- 2.40.0