]> granicus.if.org Git - neomutt/commitdiff
As Ralf Wildenhues noted, the cygwin EXEEXT patch was incomplete. Note to
authorBrendan Cully <brendan@kublai.com>
Wed, 16 Mar 2005 07:01:59 +0000 (07:01 +0000)
committerBrendan Cully <brendan@kublai.com>
Wed, 16 Mar 2005 07:01:59 +0000 (07:01 +0000)
self: avoid patching on short sleep. Starting tomorrow.

doc/Makefile.in

index 6a4034e7c91632e27c718bc6551079413c72efeb..c01fa3d9d64ef13ec9464696908c50c833323b12 100644 (file)
@@ -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