2007-09-06 04:25:08 +00:00
|
|
|
# Makefile for the GNU Emacs Lisp Reference Manual.
|
|
|
|
|
|
|
|
# Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000,
|
2011-01-02 23:50:46 +00:00
|
|
|
# 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
|
2008-01-07 08:53:20 +00:00
|
|
|
# Free Software Foundation, Inc.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
# This file is part of GNU Emacs.
|
|
|
|
|
2008-05-16 06:02:53 +00:00
|
|
|
# GNU Emacs is free software: you can redistribute it and/or modify
|
2007-09-06 04:25:08 +00:00
|
|
|
# it under the terms of the GNU General Public License as published by
|
2008-05-16 06:02:53 +00:00
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
# 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
|
2008-05-16 06:02:53 +00:00
|
|
|
# along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
Misc cleanup for doc/*/Makefiles.
* doc/misc/Makefile.in (SHELL): Set it.
(info): Move the mkdir dependency to the individual info files.
(mostlyclean): Tidy up.
(clean): Only delete the specific dvi and pdf files.
(maintainer-clean): Be more restrictive in what we delete.
* doc/lispref/Makefile.in: Rearrange to more closely resemble
doc/emacs/Makefile.
(INSTALL_INFO): Remove unused variable.
(mostlyclean, infoclean, dist): New rules.
(clean): Delete dvi and pdf files.
(maintainer-clean): Remove elisp.oaux, use infoclean.
* doc/lispintro/Makefile.in (SHELL): Use /bin/sh, like every other Makefile.in.
(INFO_SOURCES, INFO_TARGETS, DVI_TARGETS): Remove variables.
($(infodir), html, pdf, infoclean, dist): New rules.
(${infodir}/eintr): Ensure $infodir exists. Use $@.
(emacs-lisp-intro.dvi, emacs-lisp-intro.pdf, emacs-lisp-intro.html): Use $^.
(.PHONY): Declare clean rules.
(mostlyclean): Delete more temp files.
(clean): Delete specific dvi, pdf and html files.
(maintainer-clean): Use infoclean.
(.NOEXPORT): Remove, unused by any other Makefile.in.
* doc/emacs/Makefile.in (EMACS_XTRA): Add the main source file.
(emacs-xtra.dvi, emacs-xtra.pdf): Remove explicit emacs-xtra.texi.
(mostlyclean): No core files, reorder other files.
(clean): Delete specific dvi and pdf files.
(infoclean, dist): New rules.
(maintainer-clean): Use infoclean.
2010-10-06 02:26:38 +00:00
|
|
|
SHELL = /bin/sh
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
# Standard configure variables.
|
|
|
|
srcdir = @srcdir@
|
|
|
|
|
2010-10-07 02:23:28 +00:00
|
|
|
version=@version@
|
|
|
|
|
2010-10-09 21:19:09 +00:00
|
|
|
infodir = $(srcdir)/../../info
|
2009-07-09 03:07:16 +00:00
|
|
|
# Directory with the (customized) texinfo.tex file.
|
|
|
|
texinfodir = $(srcdir)/../misc
|
2010-10-09 01:41:21 +00:00
|
|
|
# Directory with emacsver.texi.
|
|
|
|
emacsdir = $(srcdir)/../emacs
|
2007-09-06 04:25:08 +00:00
|
|
|
|
2010-10-11 01:57:48 +00:00
|
|
|
MAKEINFO = makeinfo --force -I $(emacsdir) -I $(srcdir)
|
2007-09-06 04:25:08 +00:00
|
|
|
TEXI2DVI = texi2dvi
|
2009-07-11 20:06:30 +00:00
|
|
|
TEXI2PDF = texi2pdf
|
2010-10-11 00:30:34 +00:00
|
|
|
DVIPS = dvips
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
# List of all the texinfo files in the manual:
|
|
|
|
|
|
|
|
srcs = \
|
2010-10-09 19:39:42 +00:00
|
|
|
$(srcdir)/elisp.texi \
|
2010-10-09 02:09:46 +00:00
|
|
|
$(emacsdir)/emacsver.texi \
|
2007-09-06 04:25:08 +00:00
|
|
|
$(srcdir)/abbrevs.texi \
|
|
|
|
$(srcdir)/advice.texi \
|
|
|
|
$(srcdir)/anti.texi \
|
|
|
|
$(srcdir)/back.texi \
|
|
|
|
$(srcdir)/backups.texi \
|
|
|
|
$(srcdir)/buffers.texi \
|
|
|
|
$(srcdir)/commands.texi \
|
|
|
|
$(srcdir)/compile.texi \
|
|
|
|
$(srcdir)/control.texi \
|
|
|
|
$(srcdir)/customize.texi \
|
|
|
|
$(srcdir)/debugging.texi \
|
|
|
|
$(srcdir)/display.texi \
|
|
|
|
$(srcdir)/edebug.texi \
|
|
|
|
$(srcdir)/errors.texi \
|
|
|
|
$(srcdir)/eval.texi \
|
|
|
|
$(srcdir)/files.texi \
|
|
|
|
$(srcdir)/frames.texi \
|
|
|
|
$(srcdir)/functions.texi \
|
|
|
|
$(srcdir)/hash.texi \
|
|
|
|
$(srcdir)/help.texi \
|
|
|
|
$(srcdir)/hooks.texi \
|
|
|
|
$(srcdir)/internals.texi \
|
|
|
|
$(srcdir)/intro.texi \
|
|
|
|
$(srcdir)/keymaps.texi \
|
|
|
|
$(srcdir)/lists.texi \
|
|
|
|
$(srcdir)/loading.texi \
|
|
|
|
$(srcdir)/locals.texi \
|
|
|
|
$(srcdir)/macros.texi \
|
|
|
|
$(srcdir)/maps.texi \
|
|
|
|
$(srcdir)/markers.texi \
|
|
|
|
$(srcdir)/minibuf.texi \
|
|
|
|
$(srcdir)/modes.texi \
|
|
|
|
$(srcdir)/nonascii.texi \
|
|
|
|
$(srcdir)/numbers.texi \
|
|
|
|
$(srcdir)/objects.texi \
|
|
|
|
$(srcdir)/os.texi \
|
|
|
|
$(srcdir)/positions.texi \
|
|
|
|
$(srcdir)/processes.texi \
|
|
|
|
$(srcdir)/searching.texi \
|
|
|
|
$(srcdir)/sequences.texi \
|
|
|
|
$(srcdir)/streams.texi \
|
|
|
|
$(srcdir)/strings.texi \
|
|
|
|
$(srcdir)/symbols.texi \
|
|
|
|
$(srcdir)/syntax.texi \
|
|
|
|
$(srcdir)/text.texi \
|
|
|
|
$(srcdir)/tips.texi \
|
|
|
|
$(srcdir)/variables.texi \
|
|
|
|
$(srcdir)/windows.texi \
|
|
|
|
$(srcdir)/index.texi \
|
|
|
|
$(srcdir)/gpl.texi \
|
|
|
|
$(srcdir)/doclicense.texi
|
|
|
|
|
2010-10-09 21:19:09 +00:00
|
|
|
mkinfodir = @test -d ${infodir} || mkdir ${infodir} || test -d ${infodir}
|
2010-10-09 18:31:12 +00:00
|
|
|
|
2010-10-11 00:30:34 +00:00
|
|
|
.PHONY: info dvi pdf ps
|
Mark some doc/ rules as PHONY.
* doc/misc/Makefile.in (.PHONY): Declare info, dvi, pdf and the clean rules.
* doc/lispref/Makefile.in (.PHONY): Declare info, dvi, pdf, dist.
* doc/lispintro/Makefile.in (.PHONY): Declare info, dvi, html, pdf, dist.
* doc/emacs/Makefile.in (.PHONY): Declare info, dvi, pdf, dist.
(emacs): Remove rule.
(dist): No need to deal with the emacs rule any more.
2010-10-09 01:02:21 +00:00
|
|
|
|
2007-09-06 04:25:08 +00:00
|
|
|
info: $(infodir)/elisp
|
2010-10-04 00:49:20 +00:00
|
|
|
dvi: elisp.dvi
|
2010-10-11 00:43:27 +00:00
|
|
|
html: elisp.html
|
2010-10-04 00:49:20 +00:00
|
|
|
pdf: elisp.pdf
|
2010-10-11 00:30:34 +00:00
|
|
|
ps: elisp.ps
|
2010-10-04 00:49:20 +00:00
|
|
|
|
2010-10-09 18:31:12 +00:00
|
|
|
$(infodir)/elisp: $(srcs)
|
|
|
|
$(mkinfodir)
|
2010-10-11 00:43:27 +00:00
|
|
|
$(MAKEINFO) -o $@ $<
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
elisp.dvi: $(srcs)
|
2010-10-28 07:21:43 +00:00
|
|
|
$(TEXI2DVI) -I $(srcdir) -I $(texinfodir) -I $(emacsdir) $<
|
2007-09-06 04:25:08 +00:00
|
|
|
|
2010-10-11 00:43:27 +00:00
|
|
|
elisp.html: $(srcs)
|
|
|
|
$(MAKEINFO) --html -o $@ $<
|
|
|
|
|
2010-10-11 00:30:34 +00:00
|
|
|
elisp.ps: elisp.dvi
|
|
|
|
$(DVIPS) -o $@ $<
|
|
|
|
|
2009-07-11 20:06:30 +00:00
|
|
|
elisp.pdf: $(srcs)
|
2010-10-28 07:21:43 +00:00
|
|
|
$(TEXI2PDF) -I $(srcdir) -I $(texinfodir) -I $(emacsdir) $<
|
2009-07-11 20:06:30 +00:00
|
|
|
|
Misc cleanup for doc/*/Makefiles.
* doc/misc/Makefile.in (SHELL): Set it.
(info): Move the mkdir dependency to the individual info files.
(mostlyclean): Tidy up.
(clean): Only delete the specific dvi and pdf files.
(maintainer-clean): Be more restrictive in what we delete.
* doc/lispref/Makefile.in: Rearrange to more closely resemble
doc/emacs/Makefile.
(INSTALL_INFO): Remove unused variable.
(mostlyclean, infoclean, dist): New rules.
(clean): Delete dvi and pdf files.
(maintainer-clean): Remove elisp.oaux, use infoclean.
* doc/lispintro/Makefile.in (SHELL): Use /bin/sh, like every other Makefile.in.
(INFO_SOURCES, INFO_TARGETS, DVI_TARGETS): Remove variables.
($(infodir), html, pdf, infoclean, dist): New rules.
(${infodir}/eintr): Ensure $infodir exists. Use $@.
(emacs-lisp-intro.dvi, emacs-lisp-intro.pdf, emacs-lisp-intro.html): Use $^.
(.PHONY): Declare clean rules.
(mostlyclean): Delete more temp files.
(clean): Delete specific dvi, pdf and html files.
(maintainer-clean): Use infoclean.
(.NOEXPORT): Remove, unused by any other Makefile.in.
* doc/emacs/Makefile.in (EMACS_XTRA): Add the main source file.
(emacs-xtra.dvi, emacs-xtra.pdf): Remove explicit emacs-xtra.texi.
(mostlyclean): No core files, reorder other files.
(clean): Delete specific dvi and pdf files.
(infoclean, dist): New rules.
(maintainer-clean): Use infoclean.
2010-10-06 02:26:38 +00:00
|
|
|
.PHONY: mostlyclean clean distclean maintainer-clean infoclean
|
|
|
|
|
|
|
|
## [12] stuff is from two-volume.make.
|
|
|
|
mostlyclean:
|
|
|
|
rm -f *.aux *.log *.toc *.cp *.cps *.fn *.fns *.ky *.kys \
|
|
|
|
*.op *.ops *.pg *.pgs *.tp *.tps *.vr *.vrs
|
|
|
|
rm -f elisp[12]*
|
2010-10-04 00:49:20 +00:00
|
|
|
|
Misc cleanup for doc/*/Makefiles.
* doc/misc/Makefile.in (SHELL): Set it.
(info): Move the mkdir dependency to the individual info files.
(mostlyclean): Tidy up.
(clean): Only delete the specific dvi and pdf files.
(maintainer-clean): Be more restrictive in what we delete.
* doc/lispref/Makefile.in: Rearrange to more closely resemble
doc/emacs/Makefile.
(INSTALL_INFO): Remove unused variable.
(mostlyclean, infoclean, dist): New rules.
(clean): Delete dvi and pdf files.
(maintainer-clean): Remove elisp.oaux, use infoclean.
* doc/lispintro/Makefile.in (SHELL): Use /bin/sh, like every other Makefile.in.
(INFO_SOURCES, INFO_TARGETS, DVI_TARGETS): Remove variables.
($(infodir), html, pdf, infoclean, dist): New rules.
(${infodir}/eintr): Ensure $infodir exists. Use $@.
(emacs-lisp-intro.dvi, emacs-lisp-intro.pdf, emacs-lisp-intro.html): Use $^.
(.PHONY): Declare clean rules.
(mostlyclean): Delete more temp files.
(clean): Delete specific dvi, pdf and html files.
(maintainer-clean): Use infoclean.
(.NOEXPORT): Remove, unused by any other Makefile.in.
* doc/emacs/Makefile.in (EMACS_XTRA): Add the main source file.
(emacs-xtra.dvi, emacs-xtra.pdf): Remove explicit emacs-xtra.texi.
(mostlyclean): No core files, reorder other files.
(clean): Delete specific dvi and pdf files.
(infoclean, dist): New rules.
(maintainer-clean): Use infoclean.
2010-10-06 02:26:38 +00:00
|
|
|
clean: mostlyclean
|
2010-10-11 00:30:34 +00:00
|
|
|
rm -f elisp.dvi elisp.pdf elisp.ps vol[12].pdf
|
2010-10-11 00:43:27 +00:00
|
|
|
rm -rf elisp.html
|
2010-10-07 02:23:28 +00:00
|
|
|
rm -f emacs-lispref-${version}.tar*
|
2007-09-06 04:25:08 +00:00
|
|
|
|
|
|
|
distclean: clean
|
|
|
|
|
Misc cleanup for doc/*/Makefiles.
* doc/misc/Makefile.in (SHELL): Set it.
(info): Move the mkdir dependency to the individual info files.
(mostlyclean): Tidy up.
(clean): Only delete the specific dvi and pdf files.
(maintainer-clean): Be more restrictive in what we delete.
* doc/lispref/Makefile.in: Rearrange to more closely resemble
doc/emacs/Makefile.
(INSTALL_INFO): Remove unused variable.
(mostlyclean, infoclean, dist): New rules.
(clean): Delete dvi and pdf files.
(maintainer-clean): Remove elisp.oaux, use infoclean.
* doc/lispintro/Makefile.in (SHELL): Use /bin/sh, like every other Makefile.in.
(INFO_SOURCES, INFO_TARGETS, DVI_TARGETS): Remove variables.
($(infodir), html, pdf, infoclean, dist): New rules.
(${infodir}/eintr): Ensure $infodir exists. Use $@.
(emacs-lisp-intro.dvi, emacs-lisp-intro.pdf, emacs-lisp-intro.html): Use $^.
(.PHONY): Declare clean rules.
(mostlyclean): Delete more temp files.
(clean): Delete specific dvi, pdf and html files.
(maintainer-clean): Use infoclean.
(.NOEXPORT): Remove, unused by any other Makefile.in.
* doc/emacs/Makefile.in (EMACS_XTRA): Add the main source file.
(emacs-xtra.dvi, emacs-xtra.pdf): Remove explicit emacs-xtra.texi.
(mostlyclean): No core files, reorder other files.
(clean): Delete specific dvi and pdf files.
(infoclean, dist): New rules.
(maintainer-clean): Use infoclean.
2010-10-06 02:26:38 +00:00
|
|
|
infoclean:
|
2010-10-09 21:19:09 +00:00
|
|
|
-cd $(infodir) && rm -f elisp elisp-[1-9] elisp-[1-9][0-9]
|
2010-10-04 00:49:20 +00:00
|
|
|
|
Misc cleanup for doc/*/Makefiles.
* doc/misc/Makefile.in (SHELL): Set it.
(info): Move the mkdir dependency to the individual info files.
(mostlyclean): Tidy up.
(clean): Only delete the specific dvi and pdf files.
(maintainer-clean): Be more restrictive in what we delete.
* doc/lispref/Makefile.in: Rearrange to more closely resemble
doc/emacs/Makefile.
(INSTALL_INFO): Remove unused variable.
(mostlyclean, infoclean, dist): New rules.
(clean): Delete dvi and pdf files.
(maintainer-clean): Remove elisp.oaux, use infoclean.
* doc/lispintro/Makefile.in (SHELL): Use /bin/sh, like every other Makefile.in.
(INFO_SOURCES, INFO_TARGETS, DVI_TARGETS): Remove variables.
($(infodir), html, pdf, infoclean, dist): New rules.
(${infodir}/eintr): Ensure $infodir exists. Use $@.
(emacs-lisp-intro.dvi, emacs-lisp-intro.pdf, emacs-lisp-intro.html): Use $^.
(.PHONY): Declare clean rules.
(mostlyclean): Delete more temp files.
(clean): Delete specific dvi, pdf and html files.
(maintainer-clean): Use infoclean.
(.NOEXPORT): Remove, unused by any other Makefile.in.
* doc/emacs/Makefile.in (EMACS_XTRA): Add the main source file.
(emacs-xtra.dvi, emacs-xtra.pdf): Remove explicit emacs-xtra.texi.
(mostlyclean): No core files, reorder other files.
(clean): Delete specific dvi and pdf files.
(infoclean, dist): New rules.
(maintainer-clean): Use infoclean.
2010-10-06 02:26:38 +00:00
|
|
|
maintainer-clean: distclean infoclean
|
|
|
|
|
Mark some doc/ rules as PHONY.
* doc/misc/Makefile.in (.PHONY): Declare info, dvi, pdf and the clean rules.
* doc/lispref/Makefile.in (.PHONY): Declare info, dvi, pdf, dist.
* doc/lispintro/Makefile.in (.PHONY): Declare info, dvi, html, pdf, dist.
* doc/emacs/Makefile.in (.PHONY): Declare info, dvi, pdf, dist.
(emacs): Remove rule.
(dist): No need to deal with the emacs rule any more.
2010-10-09 01:02:21 +00:00
|
|
|
.PHONY: dist
|
|
|
|
|
Misc cleanup for doc/*/Makefiles.
* doc/misc/Makefile.in (SHELL): Set it.
(info): Move the mkdir dependency to the individual info files.
(mostlyclean): Tidy up.
(clean): Only delete the specific dvi and pdf files.
(maintainer-clean): Be more restrictive in what we delete.
* doc/lispref/Makefile.in: Rearrange to more closely resemble
doc/emacs/Makefile.
(INSTALL_INFO): Remove unused variable.
(mostlyclean, infoclean, dist): New rules.
(clean): Delete dvi and pdf files.
(maintainer-clean): Remove elisp.oaux, use infoclean.
* doc/lispintro/Makefile.in (SHELL): Use /bin/sh, like every other Makefile.in.
(INFO_SOURCES, INFO_TARGETS, DVI_TARGETS): Remove variables.
($(infodir), html, pdf, infoclean, dist): New rules.
(${infodir}/eintr): Ensure $infodir exists. Use $@.
(emacs-lisp-intro.dvi, emacs-lisp-intro.pdf, emacs-lisp-intro.html): Use $^.
(.PHONY): Declare clean rules.
(mostlyclean): Delete more temp files.
(clean): Delete specific dvi, pdf and html files.
(maintainer-clean): Use infoclean.
(.NOEXPORT): Remove, unused by any other Makefile.in.
* doc/emacs/Makefile.in (EMACS_XTRA): Add the main source file.
(emacs-xtra.dvi, emacs-xtra.pdf): Remove explicit emacs-xtra.texi.
(mostlyclean): No core files, reorder other files.
(clean): Delete specific dvi and pdf files.
(infoclean, dist): New rules.
(maintainer-clean): Use infoclean.
2010-10-06 02:26:38 +00:00
|
|
|
## Note this excludes the two-volume stuff.
|
|
|
|
dist:
|
2010-10-07 02:23:28 +00:00
|
|
|
rm -rf emacs-lispref-${version}
|
|
|
|
mkdir emacs-lispref-${version}
|
Misc cleanup for doc/*/Makefiles.
* doc/misc/Makefile.in (SHELL): Set it.
(info): Move the mkdir dependency to the individual info files.
(mostlyclean): Tidy up.
(clean): Only delete the specific dvi and pdf files.
(maintainer-clean): Be more restrictive in what we delete.
* doc/lispref/Makefile.in: Rearrange to more closely resemble
doc/emacs/Makefile.
(INSTALL_INFO): Remove unused variable.
(mostlyclean, infoclean, dist): New rules.
(clean): Delete dvi and pdf files.
(maintainer-clean): Remove elisp.oaux, use infoclean.
* doc/lispintro/Makefile.in (SHELL): Use /bin/sh, like every other Makefile.in.
(INFO_SOURCES, INFO_TARGETS, DVI_TARGETS): Remove variables.
($(infodir), html, pdf, infoclean, dist): New rules.
(${infodir}/eintr): Ensure $infodir exists. Use $@.
(emacs-lisp-intro.dvi, emacs-lisp-intro.pdf, emacs-lisp-intro.html): Use $^.
(.PHONY): Declare clean rules.
(mostlyclean): Delete more temp files.
(clean): Delete specific dvi, pdf and html files.
(maintainer-clean): Use infoclean.
(.NOEXPORT): Remove, unused by any other Makefile.in.
* doc/emacs/Makefile.in (EMACS_XTRA): Add the main source file.
(emacs-xtra.dvi, emacs-xtra.pdf): Remove explicit emacs-xtra.texi.
(mostlyclean): No core files, reorder other files.
(clean): Delete specific dvi and pdf files.
(infoclean, dist): New rules.
(maintainer-clean): Use infoclean.
2010-10-06 02:26:38 +00:00
|
|
|
cp ${srcdir}/*.texi ${texinfodir}/texinfo.tex \
|
2010-10-09 20:28:34 +00:00
|
|
|
$(emacsdir)/emacsver.texi ${srcdir}/ChangeLog* \
|
|
|
|
${srcdir}/README emacs-lispref-${version}/
|
2010-10-09 20:36:14 +00:00
|
|
|
sed -e 's/@sr[c]dir@/./' -e 's/^\(texinfodir *=\).*/\1 ./' \
|
|
|
|
-e 's/^\(emacsdir *=\).*/\1 ./' \
|
|
|
|
-e 's/^\(infodir *=\).*/\1 ./' -e 's/^\(clean:.*\)/\1 infoclean/' \
|
2010-10-07 02:23:28 +00:00
|
|
|
-e "s/@ver[s]ion@/${version}/" \
|
|
|
|
${srcdir}/Makefile.in > emacs-lispref-${version}/Makefile
|
|
|
|
tar -cf emacs-lispref-${version}.tar emacs-lispref-${version}
|
|
|
|
rm -rf emacs-lispref-${version}
|
Misc cleanup for doc/*/Makefiles.
* doc/misc/Makefile.in (SHELL): Set it.
(info): Move the mkdir dependency to the individual info files.
(mostlyclean): Tidy up.
(clean): Only delete the specific dvi and pdf files.
(maintainer-clean): Be more restrictive in what we delete.
* doc/lispref/Makefile.in: Rearrange to more closely resemble
doc/emacs/Makefile.
(INSTALL_INFO): Remove unused variable.
(mostlyclean, infoclean, dist): New rules.
(clean): Delete dvi and pdf files.
(maintainer-clean): Remove elisp.oaux, use infoclean.
* doc/lispintro/Makefile.in (SHELL): Use /bin/sh, like every other Makefile.in.
(INFO_SOURCES, INFO_TARGETS, DVI_TARGETS): Remove variables.
($(infodir), html, pdf, infoclean, dist): New rules.
(${infodir}/eintr): Ensure $infodir exists. Use $@.
(emacs-lisp-intro.dvi, emacs-lisp-intro.pdf, emacs-lisp-intro.html): Use $^.
(.PHONY): Declare clean rules.
(mostlyclean): Delete more temp files.
(clean): Delete specific dvi, pdf and html files.
(maintainer-clean): Use infoclean.
(.NOEXPORT): Remove, unused by any other Makefile.in.
* doc/emacs/Makefile.in (EMACS_XTRA): Add the main source file.
(emacs-xtra.dvi, emacs-xtra.pdf): Remove explicit emacs-xtra.texi.
(mostlyclean): No core files, reorder other files.
(clean): Delete specific dvi and pdf files.
(infoclean, dist): New rules.
(maintainer-clean): Use infoclean.
2010-10-06 02:26:38 +00:00
|
|
|
|
2010-10-04 00:49:20 +00:00
|
|
|
### Makefile ends here
|