(calc-get-operator): Remove extra format
[bpt/emacs.git] / man / Makefile.in
index 4adfe05..e1b9710 100644 (file)
@@ -1,10 +1,31 @@
 #### Makefile for the Emacs Manual and other documentation.
 
+# Copyright (C) 1994, 1996, 1997, 1998, 1999, 2000, 2001, 2003
+#  Free Software Foundation, Inc.
+
+# This file is part of GNU Emacs.
+
+# GNU Emacs is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+
+# GNU Emacs is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with GNU Emacs; see the file COPYING.  If not, write to
+# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+
 # Where to find the source code.  The source code for Emacs's C kernel is
 # expected to be in ${srcdir}/src, and the source code for Emacs's
 # utility programs is expected to be in ${srcdir}/lib-src.  This is
 # set by the configure script's `--srcdir' option.
 srcdir=@srcdir@
+top_srcdir=@top_srcdir@
 
 # Tell make where to find source files; this is needed for the makefiles.
 VPATH=@srcdir@
@@ -16,15 +37,17 @@ INFO_TARGETS = ../info/emacs ../info/ccmode ../info/cl \
                ../info/dired-x ../info/ediff ../info/forms ../info/gnus \
                ../info/info ../info/message ../info/mh-e ../info/reftex \
                ../info/sc ../info/vip ../info/viper ../info/widget \
-               ../info/efaq ../info/ada-mode ../info/autotype \
+               ../info/efaq ../info/ada-mode ../info/autotype ../info/calc \
                ../info/idlwave ../info/eudc ../info/ebrowse ../info/pcl-cvs \
-               ../info/woman
-DVI_TARGETS = emacs.dvi cc-mode.dvi cl.dvi dired-x.dvi \
+               ../info/woman ../info/emacs-mime ../info/eshell \
+               ../info/speedbar ../info/tramp ../info/ses ../info/smtpmail
+DVI_TARGETS =  emacs.dvi calc.dvi cc-mode.dvi cl.dvi dired-x.dvi \
                 ediff.dvi forms.dvi gnus.dvi message.dvi mh-e.dvi \
                 reftex.dvi sc.dvi vip.dvi viper.dvi widget.dvi faq.dvi \
                 ada-mode.dvi autotype.dvi idlwave.dvi eudc.dvi ebrowse.dvi \
-                pcl-cvs.dvi woman.dvi
-INFOSOURCES = info.texi info-stnd.texi
+                pcl-cvs.dvi woman.dvi emacs-mime.dvi eshell.dvi \
+                speedbar.dvi tramp.dvi ses.dvi smtpmail.dvi
+INFOSOURCES = info.texi
 
 # The following rule does not work with all versions of `make'.
 .SUFFIXES: .texi .dvi
@@ -32,10 +55,11 @@ INFOSOURCES = info.texi info-stnd.texi
        texi2dvi $<
 
 TEXI2DVI = texi2dvi
-ENVADD = TEXINPUTS="$(srcdir):$(TEXINPUTS)" MAKEINFO="$(MAKEINFO) -I$(srcdir)" 
+ENVADD = TEXINPUTS="$(srcdir):$(TEXINPUTS)" MAKEINFO="$(MAKEINFO) -I$(srcdir)"
 
 EMACSSOURCES= \
        ${srcdir}/emacs.texi \
+       ${srcdir}/doclicense.texi \
        ${srcdir}/screen.texi \
        ${srcdir}/commands.texi \
        ${srcdir}/entering.texi \
@@ -59,6 +83,7 @@ EMACSSOURCES= \
        ${srcdir}/text.texi \
        ${srcdir}/programs.texi \
        ${srcdir}/building.texi \
+       ${srcdir}/maintaining.texi \
        ${srcdir}/abbrevs.texi \
        ${srcdir}/picture.texi \
        ${srcdir}/sending.texi \
@@ -69,13 +94,19 @@ EMACSSOURCES= \
        ${srcdir}/custom.texi \
        ${srcdir}/trouble.texi \
        ${srcdir}/cmdargs.texi \
+       ${srcdir}/xresources.texi \
        ${srcdir}/anti.texi \
+       ${srcdir}/macos.texi \
        ${srcdir}/msdog.texi \
        ${srcdir}/gnu.texi \
        ${srcdir}/glossary.texi \
-       ${srcdir}/ack.texi
+       ${srcdir}/ack.texi \
+       ${srcdir}/kmacro.texi
 
-info: $(INFO_TARGETS)
+info: $(top_srcdir)/info $(INFO_TARGETS)
+
+$(top_srcdir)/info:
+       mkdir $@
 
 dvi: $(DVI_TARGETS)
 
@@ -84,8 +115,12 @@ dvi: $(DVI_TARGETS)
 # to exist in the build directory.
 # In a distribution of Emacs, the Info files should be up to date.
 
+# The following target uses an explicit -o switch to work around
+# the @setfilename directive in info.texi, which is required for
+# the Texinfo distribution.
+
 ../info/info: ${INFOSOURCES}
-       cd $(srcdir); $(MAKEINFO) --no-split info.texi
+       cd $(srcdir); $(MAKEINFO) --no-split info.texi -o $@
 
 info.dvi: ${INFOSOURCES}
        $(ENVADD) $(TEXI2DVI) ${srcdir}/info.texi
@@ -96,6 +131,13 @@ info.dvi: ${INFOSOURCES}
 emacs.dvi: ${EMACSSOURCES}
        $(ENVADD) $(TEXI2DVI) ${srcdir}/emacs.texi
 
+# This target is here so you could easily get the list of the *.texi
+# files which belong to the Emacs manual (as opposed to the separate
+# manuals for CL, CC Mode, Ebrowse, etc.).  With this target, you can
+# say things like "grep foo `make emacsman`".
+emacsman:
+       @echo $(EMACSSOURCES)
+
 ../info/ccmode: cc-mode.texi
        cd $(srcdir); $(MAKEINFO) cc-mode.texi
 cc-mode.dvi: cc-mode.texi
@@ -111,6 +153,11 @@ ada-mode.dvi: ada-mode.texi
 pcl-cvs.dvi: pcl-cvs.texi
        $(ENVADD) $(TEXI2DVI) ${srcdir}/pcl-cvs.texi
 
+../info/eshell: eshell.texi
+       cd $(srcdir); $(MAKEINFO) eshell.texi
+eshell.dvi: eshell.texi
+       $(ENVADD) $(TEXI2DVI) ${srcdir}/eshell.texi
+
 ../info/cl: cl.texi
        cd $(srcdir); $(MAKEINFO) cl.texi
 cl.dvi: cl.texi
@@ -134,7 +181,10 @@ forms.dvi: forms.texi
 ../info/gnus: gnus.texi
        cd $(srcdir); $(MAKEINFO) gnus.texi
 gnus.dvi: gnus.texi
-       $(ENVADD) $(TEXI2DVI) ${srcdir}/gnus.texi
+       sed -e '/@iflatex/,/@end iflatex/d' ${srcdir}/gnus.texi > gnustmp.texi
+       $(ENVADD) $(TEXI2DVI) gnustmp.texi
+       cp gnustmp.dvi $*.dvi
+       rm gnustmp.*
 
 ../info/message: message.texi
        cd $(srcdir); $(MAKEINFO) message.texi
@@ -184,8 +234,16 @@ faq.dvi: faq.texi
 autotype.dvi: autotype.texi
        $(ENVADD) $(TEXI2DVI) ${srcdir}/autotype.texi
 
+../info/calc: calc.texi
+       cd $(srcdir); $(MAKEINFO) calc.texi
+
+calc.dvi: calc.texi
+       $(ENVADD) $(TEXI2DVI) ${srcdir}/calc.texi
+
+# This is produced with --no-split to avoid making files whose
+# names clash on DOS 8+3 filesystems
 ../info/idlwave: idlwave.texi
-       cd $(srcdir); $(MAKEINFO) idlwave.texi
+       cd $(srcdir); $(MAKEINFO) --no-split idlwave.texi
 idlwave.dvi: idlwave.texi
        $(ENVADD) $(TEXI2DVI) ${srcdir}/idlwave.texi
 
@@ -204,8 +262,33 @@ ebrowse.dvi: ebrowse.texi
 woman.dvi: woman.texi
        $(ENVADD) $(TEXI2DVI) ${srcdir}/woman.texi
 
+../info/speedbar: speedbar.texi
+       cd $(srcdir); $(MAKEINFO) speedbar.texi
+speedbar.dvi: speedbar.texi
+       $(ENVADD) $(TEXI2DVI) ${srcdir}/speedbar.texi
+
+../info/emacs-mime: emacs-mime.texi
+       cd $(srcdir); $(MAKEINFO) emacs-mime.texi
+emacs-mime.dvi: emacs-mime.texi
+       $(ENVADD) $(TEXI2DVI) ${srcdir}/emacs-mime.texi
+
+../info/tramp: tramp.texi
+       cd $(srcdir); $(MAKEINFO) -D emacs tramp.texi
+tramp.dvi: tramp.texi
+       $(ENVADD) $(TEXI2DVI) ${srcdir}/tramp.texi
+
+../info/ses: ses.texi
+       cd $(srcdir); $(MAKEINFO) ses.texi
+ses.dvi: ses.texi
+       $(ENVADD) $(TEXI2DVI) ${srcdir}/ses.texi
+
+../info/smtpmail: smtpmail.texi
+       cd $(srcdir); $(MAKEINFO) smtpmail.texi
+smtpmail.dvi: smtpmail.texi
+       $(ENVADD) $(TEXI2DVI) ${srcdir}/smtpmail.texi
+
 mostlyclean:
-       rm -f *.log *.cp *.fn *.ky *.pg *.vr core
+       rm -f *.log *.cp *.fn *.ky *.pg *.vr core *.tp *.core gnustmp.*
 
 clean: mostlyclean
        rm -f *.dvi
@@ -213,7 +296,7 @@ clean: mostlyclean
 distclean: clean
 
 maintainer-clean: distclean
-       rm -f *.aux *.cps *.fns *.kys *.pgs *.vrs
+       rm -f *.aux *.cps *.fns *.kys *.pgs *.vrs *.toc
 # Don't delete these, because they are outside the current directory.
 #      for file in $(INFO_TARGETS); do rm -f $${file}*; done
 
@@ -223,3 +306,5 @@ maintainer-clean: distclean
 # That caused trouble because this is run entirely in the source directory.
 # Since we expect to get texi2dvi from elsewhere,
 # it is ok to expect texindex from elsewhere also.
+
+# arch-tag: 19cdb89e-4acb-448e-b0cc-2ddc05948ee2