(calcFunc-esimplify, calcFunc-simplify, calcFunc-subst): Use
[bpt/emacs.git] / man / Makefile.in
index e02aa8e..6b5bd1c 100644 (file)
@@ -1,5 +1,25 @@
 #### Makefile for the Emacs Manual and other documentation.
 
+# Copyright (C) 1994, 1996, 1997, 1998, 1999, 2000, 2001
+#  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
@@ -16,7 +36,7 @@ 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 ../info/emacs-mime ../info/eshell \
                ../info/speedbar
@@ -86,8 +106,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
@@ -194,8 +218,16 @@ faq.dvi: faq.texi
 autotype.dvi: autotype.texi
        $(ENVADD) $(TEXI2DVI) ${srcdir}/autotype.texi
 
+../info/calc: calc.texi
+       cd $(srcdir); $(MAKEINFO) calc.texi
+# This does not yet work.
+#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
 
@@ -225,7 +257,7 @@ emacs-mime.dvi: emacs-mime.texi
        $(ENVADD) $(TEXI2DVI) ${srcdir}/emacs-mime.texi
 
 mostlyclean:
-       rm -f *.log *.cp *.fn *.ky *.pg *.vr core gnustmp.*
+       rm -f *.log *.cp *.fn *.ky *.pg *.vr core *.tp *.core gnustmp.*
 
 clean: mostlyclean
        rm -f *.dvi
@@ -233,7 +265,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