1995-02-07 23:56:47 +00:00
|
|
|
#### Makefile for the Emacs Manual and other documentation.
|
|
|
|
|
2005-08-10 15:40:54 +00:00
|
|
|
# Copyright (C) 1994, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
|
2006-02-05 22:41:31 +00:00
|
|
|
# 2004, 2005, 2006 Free Software Foundation, Inc.
|
2001-02-20 13:36:21 +00:00
|
|
|
|
|
|
|
# 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
|
2005-07-04 15:47:28 +00:00
|
|
|
# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
# Boston, MA 02110-1301, USA.
|
2001-02-20 13:36:21 +00:00
|
|
|
|
2004-11-21 00:26:33 +00:00
|
|
|
# Where to find the source code. $(srcdir) will be the man
|
|
|
|
# subdirectory of the source tree. This is
|
1995-02-07 23:56:47 +00:00
|
|
|
# set by the configure script's `--srcdir' option.
|
|
|
|
srcdir=@srcdir@
|
2003-09-04 16:01:15 +00:00
|
|
|
top_srcdir=@top_srcdir@
|
1995-02-07 23:56:47 +00:00
|
|
|
|
|
|
|
# Tell make where to find source files; this is needed for the makefiles.
|
|
|
|
VPATH=@srcdir@
|
|
|
|
|
|
|
|
|
|
|
|
# The makeinfo program is part of the Texinfo distribution.
|
2004-12-27 19:57:21 +00:00
|
|
|
# Use --force so that it generates output even if there are errors.
|
|
|
|
MAKEINFO = makeinfo --force
|
2004-06-15 21:01:44 +00:00
|
|
|
INFO_TARGETS = ../info/emacs ../info/emacs-xtra ../info/ccmode ../info/cl \
|
1998-05-16 19:08:49 +00:00
|
|
|
../info/dired-x ../info/ediff ../info/forms ../info/gnus \
|
2004-09-04 13:13:48 +00:00
|
|
|
../info/message ../info/sieve ../info/pgg ../info/emacs-mime \
|
|
|
|
../info/info ../info/mh-e ../info/reftex \
|
1999-09-01 11:18:42 +00:00
|
|
|
../info/sc ../info/vip ../info/viper ../info/widget \
|
2001-11-07 19:05:53 +00:00
|
|
|
../info/efaq ../info/ada-mode ../info/autotype ../info/calc \
|
2000-08-08 10:42:25 +00:00
|
|
|
../info/idlwave ../info/eudc ../info/ebrowse ../info/pcl-cvs \
|
2004-12-07 16:55:48 +00:00
|
|
|
../info/woman ../info/eshell ../info/org ../info/url \
|
2004-05-29 12:57:50 +00:00
|
|
|
../info/speedbar ../info/tramp ../info/ses ../info/smtpmail \
|
2006-01-29 13:08:58 +00:00
|
|
|
../info/flymake ../info/newsticker ../info/rcirc ../info/erc
|
2002-01-04 10:47:13 +00:00
|
|
|
DVI_TARGETS = emacs.dvi calc.dvi cc-mode.dvi cl.dvi dired-x.dvi \
|
2004-09-04 13:13:48 +00:00
|
|
|
ediff.dvi forms.dvi gnus.dvi message.dvi emacs-mime.dvi \
|
|
|
|
gnus.dvi message.dvi sieve.dvi pgg.dvi mh-e.dvi \
|
1999-10-07 21:22:54 +00:00
|
|
|
reftex.dvi sc.dvi vip.dvi viper.dvi widget.dvi faq.dvi \
|
2000-06-01 03:35:31 +00:00
|
|
|
ada-mode.dvi autotype.dvi idlwave.dvi eudc.dvi ebrowse.dvi \
|
2004-12-07 16:55:48 +00:00
|
|
|
pcl-cvs.dvi woman.dvi eshell.dvi org.dvi url.dvi \
|
2004-06-15 21:01:44 +00:00
|
|
|
speedbar.dvi tramp.dvi ses.dvi smtpmail.dvi flymake.dvi \
|
2006-01-29 13:08:58 +00:00
|
|
|
newsticker.dvi emacs-xtra.dvi rcirc.dvi erc.dvi
|
2000-11-15 14:04:43 +00:00
|
|
|
INFOSOURCES = info.texi
|
1995-02-07 23:56:47 +00:00
|
|
|
|
|
|
|
# The following rule does not work with all versions of `make'.
|
|
|
|
.SUFFIXES: .texi .dvi
|
|
|
|
.texi.dvi:
|
|
|
|
texi2dvi $<
|
|
|
|
|
|
|
|
TEXI2DVI = texi2dvi
|
2003-02-04 14:56:31 +00:00
|
|
|
ENVADD = TEXINPUTS="$(srcdir):$(TEXINPUTS)" MAKEINFO="$(MAKEINFO) -I$(srcdir)"
|
1995-02-07 23:56:47 +00:00
|
|
|
|
|
|
|
EMACSSOURCES= \
|
|
|
|
${srcdir}/emacs.texi \
|
2001-12-20 20:14:29 +00:00
|
|
|
${srcdir}/doclicense.texi \
|
1995-02-07 23:56:47 +00:00
|
|
|
${srcdir}/screen.texi \
|
|
|
|
${srcdir}/commands.texi \
|
|
|
|
${srcdir}/entering.texi \
|
|
|
|
${srcdir}/basic.texi \
|
|
|
|
${srcdir}/mini.texi \
|
|
|
|
${srcdir}/m-x.texi \
|
|
|
|
${srcdir}/help.texi \
|
|
|
|
${srcdir}/mark.texi \
|
|
|
|
${srcdir}/killing.texi \
|
|
|
|
${srcdir}/regs.texi \
|
|
|
|
${srcdir}/display.texi \
|
|
|
|
${srcdir}/search.texi \
|
|
|
|
${srcdir}/fixit.texi \
|
|
|
|
${srcdir}/files.texi \
|
|
|
|
${srcdir}/buffers.texi \
|
|
|
|
${srcdir}/windows.texi \
|
|
|
|
${srcdir}/frames.texi \
|
1998-05-06 21:28:42 +00:00
|
|
|
${srcdir}/mule.texi \
|
1995-02-07 23:56:47 +00:00
|
|
|
${srcdir}/major.texi \
|
|
|
|
${srcdir}/indent.texi \
|
|
|
|
${srcdir}/text.texi \
|
|
|
|
${srcdir}/programs.texi \
|
|
|
|
${srcdir}/building.texi \
|
2001-12-20 20:14:29 +00:00
|
|
|
${srcdir}/maintaining.texi \
|
1995-02-07 23:56:47 +00:00
|
|
|
${srcdir}/abbrevs.texi \
|
|
|
|
${srcdir}/sending.texi \
|
|
|
|
${srcdir}/rmail.texi \
|
|
|
|
${srcdir}/dired.texi \
|
|
|
|
${srcdir}/calendar.texi \
|
|
|
|
${srcdir}/misc.texi \
|
|
|
|
${srcdir}/custom.texi \
|
|
|
|
${srcdir}/trouble.texi \
|
|
|
|
${srcdir}/cmdargs.texi \
|
2001-12-20 20:14:29 +00:00
|
|
|
${srcdir}/xresources.texi \
|
1995-02-07 23:56:47 +00:00
|
|
|
${srcdir}/anti.texi \
|
2001-12-20 20:14:29 +00:00
|
|
|
${srcdir}/macos.texi \
|
1998-05-07 03:58:49 +00:00
|
|
|
${srcdir}/msdog.texi \
|
1995-02-07 23:56:47 +00:00
|
|
|
${srcdir}/gnu.texi \
|
1998-05-07 03:58:49 +00:00
|
|
|
${srcdir}/glossary.texi \
|
2003-08-18 13:10:40 +00:00
|
|
|
${srcdir}/ack.texi \
|
|
|
|
${srcdir}/kmacro.texi
|
1995-02-07 23:56:47 +00:00
|
|
|
|
2003-10-22 08:30:13 +00:00
|
|
|
info: $(top_srcdir)/info $(INFO_TARGETS)
|
|
|
|
|
2003-09-04 16:01:15 +00:00
|
|
|
$(top_srcdir)/info:
|
|
|
|
mkdir $@
|
|
|
|
|
1995-02-07 23:56:47 +00:00
|
|
|
dvi: $(DVI_TARGETS)
|
|
|
|
|
1996-06-20 20:19:49 +00:00
|
|
|
# Note that all the Info targets build the Info files
|
|
|
|
# in srcdir. There is no provision for Info files
|
|
|
|
# to exist in the build directory.
|
|
|
|
# In a distribution of Emacs, the Info files should be up to date.
|
|
|
|
|
2001-04-25 17:17:33 +00:00
|
|
|
# The following target uses an explicit -o switch to work around
|
2001-04-14 11:50:31 +00:00
|
|
|
# the @setfilename directive in info.texi, which is required for
|
|
|
|
# the Texinfo distribution.
|
|
|
|
|
1995-02-07 23:56:47 +00:00
|
|
|
../info/info: ${INFOSOURCES}
|
2001-04-14 11:50:31 +00:00
|
|
|
cd $(srcdir); $(MAKEINFO) --no-split info.texi -o $@
|
1995-02-07 23:56:47 +00:00
|
|
|
|
|
|
|
info.dvi: ${INFOSOURCES}
|
1998-04-06 10:33:02 +00:00
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/info.texi
|
1995-02-07 23:56:47 +00:00
|
|
|
|
|
|
|
../info/emacs: ${EMACSSOURCES}
|
1996-06-20 21:20:11 +00:00
|
|
|
cd $(srcdir); $(MAKEINFO) emacs.texi
|
1995-02-07 23:56:47 +00:00
|
|
|
|
|
|
|
emacs.dvi: ${EMACSSOURCES}
|
1998-04-06 10:33:02 +00:00
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/emacs.texi
|
1995-02-07 23:56:47 +00:00
|
|
|
|
2001-11-16 13:04:22 +00:00
|
|
|
# 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)
|
|
|
|
|
1996-01-09 23:05:28 +00:00
|
|
|
../info/ccmode: cc-mode.texi
|
1996-06-20 21:20:11 +00:00
|
|
|
cd $(srcdir); $(MAKEINFO) cc-mode.texi
|
1995-11-30 01:11:23 +00:00
|
|
|
cc-mode.dvi: cc-mode.texi
|
1998-04-06 10:33:02 +00:00
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/cc-mode.texi
|
1995-11-30 01:11:23 +00:00
|
|
|
|
1999-10-07 21:22:54 +00:00
|
|
|
../info/ada-mode: ada-mode.texi
|
|
|
|
cd $(srcdir); $(MAKEINFO) ada-mode.texi
|
|
|
|
ada-mode.dvi: ada-mode.texi
|
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/ada-mode.texi
|
|
|
|
|
2000-06-01 03:35:31 +00:00
|
|
|
../info/pcl-cvs: pcl-cvs.texi
|
|
|
|
cd $(srcdir); $(MAKEINFO) pcl-cvs.texi
|
|
|
|
pcl-cvs.dvi: pcl-cvs.texi
|
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/pcl-cvs.texi
|
|
|
|
|
2000-10-13 09:47:34 +00:00
|
|
|
../info/eshell: eshell.texi
|
|
|
|
cd $(srcdir); $(MAKEINFO) eshell.texi
|
|
|
|
eshell.dvi: eshell.texi
|
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/eshell.texi
|
|
|
|
|
1995-02-07 23:56:47 +00:00
|
|
|
../info/cl: cl.texi
|
1996-06-20 21:20:11 +00:00
|
|
|
cd $(srcdir); $(MAKEINFO) cl.texi
|
1995-02-07 23:56:47 +00:00
|
|
|
cl.dvi: cl.texi
|
1998-04-06 10:33:02 +00:00
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/cl.texi
|
1995-02-07 23:56:47 +00:00
|
|
|
|
|
|
|
../info/dired-x: dired-x.texi
|
1996-06-20 21:20:11 +00:00
|
|
|
cd $(srcdir); $(MAKEINFO) dired-x.texi
|
1995-02-07 23:56:47 +00:00
|
|
|
dired-x.dvi: dired-x.texi
|
1998-04-06 10:33:02 +00:00
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/dired-x.texi
|
1995-02-07 23:56:47 +00:00
|
|
|
|
1995-06-26 07:42:34 +00:00
|
|
|
../info/ediff: ediff.texi
|
1996-06-20 21:20:11 +00:00
|
|
|
cd $(srcdir); $(MAKEINFO) ediff.texi
|
1995-06-26 07:42:34 +00:00
|
|
|
ediff.dvi: ediff.texi
|
1998-04-06 10:33:02 +00:00
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/ediff.texi
|
1995-06-26 07:42:34 +00:00
|
|
|
|
2004-06-15 21:01:44 +00:00
|
|
|
../info/emacs-xtra: emacs-xtra.texi
|
|
|
|
cd $(srcdir); $(MAKEINFO) emacs-xtra.texi
|
|
|
|
emacs-xtra.dvi: emacs-xtra.texi
|
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/emacs-xtra.texi
|
|
|
|
|
1995-02-07 23:56:47 +00:00
|
|
|
../info/forms: forms.texi
|
1996-06-20 21:20:11 +00:00
|
|
|
cd $(srcdir); $(MAKEINFO) forms.texi
|
1995-02-07 23:56:47 +00:00
|
|
|
forms.dvi: forms.texi
|
1998-04-06 10:33:02 +00:00
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/forms.texi
|
1995-02-07 23:56:47 +00:00
|
|
|
|
2004-09-04 13:13:48 +00:00
|
|
|
# gnus/message/emacs-mime/sieve/pgg are part of Gnus:
|
2004-09-10 11:20:22 +00:00
|
|
|
../info/gnus: gnus.texi gnus-faq.texi
|
1997-09-23 18:23:17 +00:00
|
|
|
cd $(srcdir); $(MAKEINFO) gnus.texi
|
2004-09-10 11:20:22 +00:00
|
|
|
gnus.dvi: gnus.texi gnus-faq.texi
|
2003-02-04 14:56:31 +00:00
|
|
|
sed -e '/@iflatex/,/@end iflatex/d' ${srcdir}/gnus.texi > gnustmp.texi
|
2000-12-14 14:17:37 +00:00
|
|
|
$(ENVADD) $(TEXI2DVI) gnustmp.texi
|
|
|
|
cp gnustmp.dvi $*.dvi
|
|
|
|
rm gnustmp.*
|
2004-09-10 11:20:22 +00:00
|
|
|
|
1997-09-23 18:23:17 +00:00
|
|
|
../info/message: message.texi
|
|
|
|
cd $(srcdir); $(MAKEINFO) message.texi
|
|
|
|
message.dvi: message.texi
|
1998-04-06 10:33:02 +00:00
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/message.texi
|
2004-09-10 11:20:22 +00:00
|
|
|
|
2004-09-04 13:13:48 +00:00
|
|
|
../info/sieve: sieve.texi
|
|
|
|
cd $(srcdir); $(MAKEINFO) sieve.texi
|
|
|
|
sieve.dvi: sieve.texi
|
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/sieve.texi
|
2004-09-10 11:22:09 +00:00
|
|
|
|
2004-09-04 13:13:48 +00:00
|
|
|
../info/emacs-mime: emacs-mime.texi
|
|
|
|
cd $(srcdir); $(MAKEINFO) emacs-mime.texi
|
|
|
|
emacs-mime.dvi: emacs-mime.texi
|
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/emacs-mime.texi
|
2004-09-10 11:20:22 +00:00
|
|
|
|
2004-09-04 13:13:48 +00:00
|
|
|
../info/pgg: pgg.texi
|
|
|
|
cd $(srcdir); $(MAKEINFO) pgg.texi
|
|
|
|
pgg.dvi: pgg.texi
|
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/pgg.texi
|
1997-09-23 18:23:17 +00:00
|
|
|
|
1995-04-18 03:54:39 +00:00
|
|
|
../info/mh-e: mh-e.texi
|
1996-06-20 21:20:11 +00:00
|
|
|
cd $(srcdir); $(MAKEINFO) mh-e.texi
|
1995-04-18 03:54:39 +00:00
|
|
|
mh-e.dvi: mh-e.texi
|
1998-04-06 10:33:02 +00:00
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/mh-e.texi
|
1995-04-18 03:54:39 +00:00
|
|
|
|
1998-02-08 20:55:44 +00:00
|
|
|
../info/reftex: reftex.texi
|
|
|
|
cd $(srcdir); $(MAKEINFO) reftex.texi
|
|
|
|
reftex.dvi: reftex.texi
|
1998-04-06 10:33:02 +00:00
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/reftex.texi
|
1998-02-08 20:55:44 +00:00
|
|
|
|
1995-02-07 23:56:47 +00:00
|
|
|
../info/sc: sc.texi
|
1996-06-20 21:20:11 +00:00
|
|
|
cd $(srcdir); $(MAKEINFO) sc.texi
|
1995-02-07 23:56:47 +00:00
|
|
|
sc.dvi: sc.texi
|
1998-04-06 10:33:02 +00:00
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/sc.texi
|
1995-02-07 23:56:47 +00:00
|
|
|
|
|
|
|
../info/vip: vip.texi
|
1996-06-20 21:20:11 +00:00
|
|
|
cd $(srcdir); $(MAKEINFO) vip.texi
|
1995-02-07 23:56:47 +00:00
|
|
|
vip.dvi: vip.texi
|
1998-04-06 10:33:02 +00:00
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/vip.texi
|
1995-02-07 23:56:47 +00:00
|
|
|
|
1997-09-23 18:23:17 +00:00
|
|
|
../info/viper: viper.texi
|
|
|
|
cd $(srcdir); $(MAKEINFO) viper.texi
|
|
|
|
viper.dvi: viper.texi
|
1998-04-06 10:33:02 +00:00
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/viper.texi
|
1996-06-27 22:23:03 +00:00
|
|
|
|
1997-04-07 14:00:58 +00:00
|
|
|
../info/widget: widget.texi
|
|
|
|
cd $(srcdir); $(MAKEINFO) widget.texi
|
|
|
|
widget.dvi: widget.texi
|
1998-04-06 10:33:02 +00:00
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/widget.texi
|
1997-04-07 14:00:58 +00:00
|
|
|
|
2000-01-05 12:22:45 +00:00
|
|
|
../info/efaq: faq.texi
|
1999-09-01 11:18:42 +00:00
|
|
|
cd $(srcdir); $(MAKEINFO) faq.texi
|
|
|
|
faq.dvi: faq.texi
|
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/faq.texi
|
|
|
|
|
1995-02-07 23:56:47 +00:00
|
|
|
../etc/GNU: gnu1.texi gnu.texi
|
1998-04-06 10:33:02 +00:00
|
|
|
cd $(srcdir) && makeinfo --no-headers -o ../etc/GNU gnu1.texi
|
1995-02-07 23:56:47 +00:00
|
|
|
|
1999-10-23 18:16:22 +00:00
|
|
|
../info/autotype: autotype.texi
|
|
|
|
cd $(srcdir); $(MAKEINFO) autotype.texi
|
|
|
|
autotype.dvi: autotype.texi
|
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/autotype.texi
|
|
|
|
|
2001-11-07 19:05:53 +00:00
|
|
|
../info/calc: calc.texi
|
|
|
|
cd $(srcdir); $(MAKEINFO) calc.texi
|
2002-01-04 10:47:13 +00:00
|
|
|
|
|
|
|
calc.dvi: calc.texi
|
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/calc.texi
|
2001-11-07 19:05:53 +00:00
|
|
|
|
2000-12-20 14:13:48 +00:00
|
|
|
# This is produced with --no-split to avoid making files whose
|
|
|
|
# names clash on DOS 8+3 filesystems
|
2000-01-03 14:03:07 +00:00
|
|
|
../info/idlwave: idlwave.texi
|
2000-12-20 14:13:48 +00:00
|
|
|
cd $(srcdir); $(MAKEINFO) --no-split idlwave.texi
|
2000-01-03 14:03:07 +00:00
|
|
|
idlwave.dvi: idlwave.texi
|
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/idlwave.texi
|
|
|
|
|
2000-01-13 11:48:47 +00:00
|
|
|
../info/eudc: eudc.texi
|
|
|
|
cd $(srcdir); $(MAKEINFO) eudc.texi
|
|
|
|
eudc.dvi: eudc.texi
|
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/eudc.texi
|
|
|
|
|
2000-05-11 08:31:18 +00:00
|
|
|
../info/ebrowse: ebrowse.texi
|
|
|
|
cd $(srcdir); $(MAKEINFO) ebrowse.texi
|
|
|
|
ebrowse.dvi: ebrowse.texi
|
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/ebrowse.texi
|
|
|
|
|
2000-08-08 10:42:25 +00:00
|
|
|
../info/woman: woman.texi
|
|
|
|
cd $(srcdir); $(MAKEINFO) woman.texi
|
|
|
|
woman.dvi: woman.texi
|
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/woman.texi
|
|
|
|
|
2004-12-06 00:57:39 +00:00
|
|
|
../info/org: org.texi
|
|
|
|
cd $(srcdir); $(MAKEINFO) org.texi
|
|
|
|
org.dvi: org.texi
|
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/org.texi
|
|
|
|
|
2004-12-07 16:55:48 +00:00
|
|
|
../info/url: url.texi
|
|
|
|
cd $(srcdir); $(MAKEINFO) url.texi
|
|
|
|
url.dvi: url.texi
|
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/url.texi
|
|
|
|
|
2000-10-20 02:00:52 +00:00
|
|
|
../info/speedbar: speedbar.texi
|
|
|
|
cd $(srcdir); $(MAKEINFO) speedbar.texi
|
|
|
|
speedbar.dvi: speedbar.texi
|
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/speedbar.texi
|
2000-09-22 21:15:06 +00:00
|
|
|
|
2004-08-14 10:58:44 +00:00
|
|
|
../info/tramp: tramp.texi trampver.texi
|
2003-03-29 15:16:57 +00:00
|
|
|
cd $(srcdir); $(MAKEINFO) -D emacs tramp.texi
|
2004-08-14 10:58:44 +00:00
|
|
|
tramp.dvi: tramp.texi trampver.texi
|
2002-06-17 11:46:10 +00:00
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/tramp.texi
|
|
|
|
|
2002-09-28 18:45:56 +00:00
|
|
|
../info/ses: ses.texi
|
|
|
|
cd $(srcdir); $(MAKEINFO) ses.texi
|
|
|
|
ses.dvi: ses.texi
|
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/ses.texi
|
|
|
|
|
2003-02-23 12:20:51 +00:00
|
|
|
../info/smtpmail: smtpmail.texi
|
|
|
|
cd $(srcdir); $(MAKEINFO) smtpmail.texi
|
|
|
|
smtpmail.dvi: smtpmail.texi
|
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/smtpmail.texi
|
|
|
|
|
2004-05-29 12:57:50 +00:00
|
|
|
../info/flymake: flymake.texi
|
|
|
|
cd $(srcdir); $(MAKEINFO) flymake.texi
|
|
|
|
flymake.dvi: flymake.texi
|
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/flymake.texi
|
|
|
|
|
2005-09-15 12:31:11 +00:00
|
|
|
../info/newsticker: newsticker.texi
|
|
|
|
cd $(srcdir); $(MAKEINFO) newsticker.texi
|
|
|
|
newsticker.dvi: newsticker.texi
|
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/newsticker.texi
|
|
|
|
|
2006-01-27 18:51:58 +00:00
|
|
|
../info/rcirc: rcirc.texi
|
|
|
|
cd $(srcdir); $(MAKEINFO) rcirc.texi
|
|
|
|
rcirc.dvi: rcirc.texi
|
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/rcirc.texi
|
|
|
|
|
2006-01-29 13:08:58 +00:00
|
|
|
../info/erc: erc.texi
|
|
|
|
cd $(srcdir); $(MAKEINFO) erc.texi
|
|
|
|
erc.dvi: erc.texi
|
|
|
|
$(ENVADD) $(TEXI2DVI) ${srcdir}/erc.texi
|
|
|
|
|
1995-02-07 23:56:47 +00:00
|
|
|
mostlyclean:
|
2001-03-05 17:01:13 +00:00
|
|
|
rm -f *.log *.cp *.fn *.ky *.pg *.vr core *.tp *.core gnustmp.*
|
1995-02-07 23:56:47 +00:00
|
|
|
|
|
|
|
clean: mostlyclean
|
|
|
|
rm -f *.dvi
|
|
|
|
|
|
|
|
distclean: clean
|
|
|
|
|
|
|
|
maintainer-clean: distclean
|
2001-03-05 17:01:13 +00:00
|
|
|
rm -f *.aux *.cps *.fns *.kys *.pgs *.vrs *.toc
|
2004-12-06 00:57:39 +00:00
|
|
|
for file in $(INFO_TARGETS); do rm -f $${file}*; done
|
1995-02-07 23:56:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Formerly this directory had texindex.c and getopt.c in it
|
|
|
|
# and this makefile built them to make texindex.
|
|
|
|
# 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.
|