aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispintro
diff options
context:
space:
mode:
authorEli Zaretskii2015-08-15 10:56:51 +0300
committerEli Zaretskii2015-08-15 10:56:51 +0300
commit8db2b2a7d3fc3e4475bc4137c11069a69a3234ec (patch)
tree9c3141edc2818d2e2909f2ad89a9620a0ec45937 /doc/lispintro
parent8fa49a6786bd71aa91b1e82709bc1852a65c4646 (diff)
downloademacs-8db2b2a7d3fc3e4475bc4137c11069a69a3234ec.tar.gz
emacs-8db2b2a7d3fc3e4475bc4137c11069a69a3234ec.zip
Remove files used by the old MS-Windows specific build procedure
* nt/configure.bat: Remove everything except the blurb about the new build procedure. * make-dist: Remove references to makefile.w32-in in various directories, and to files in nt/ that were deleted. * etc/NEWS: Mention the fact that the files were dropped.
Diffstat (limited to 'doc/lispintro')
-rw-r--r--doc/lispintro/makefile.w32-in85
1 files changed, 0 insertions, 85 deletions
diff --git a/doc/lispintro/makefile.w32-in b/doc/lispintro/makefile.w32-in
deleted file mode 100644
index 12e3a431569..00000000000
--- a/doc/lispintro/makefile.w32-in
+++ /dev/null
@@ -1,85 +0,0 @@
1#### -*- Makefile -*- for the Emacs Lisp Introduction manual.
2
3# Copyright (C) 2003-2015 Free Software Foundation, Inc.
4
5# This file is part of GNU Emacs.
6
7# GNU Emacs is free software: you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation, either version 3 of the License, or
10# (at your option) any later version.
11
12# GNU Emacs is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16
17# You should have received a copy of the GNU General Public License
18# along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
19
20
21srcdir = .
22
23infodir = $(srcdir)/../../info
24# Directory with the (customized) texinfo.tex file.
25texinfodir = $(srcdir)/../misc
26# Directory with emacsver.texi.
27emacsdir = $(srcdir)/../emacs
28
29INFO_EXT=.info
30INFO_OPTS=--no-split -I$(emacsdir)
31INFO_SOURCES = $(srcdir)/emacs-lisp-intro.texi $(emacsdir)/emacsver.texi \
32 $(srcdir)/doclicense.texi
33# The file name eintr must fit within 5 characters, to allow for
34# -NN extensions to fit into DOS 8+3 limits without clashing
35INFO_TARGETS = $(infodir)/eintr$(INFO_EXT)
36DVI_TARGETS = emacs-lisp-intro.dvi
37
38MAKEINFO = makeinfo
39INSTALL_INFO = install-info
40TEXI2DVI = texi2dvi
41TEXI2PDF = texi2pdf
42DVIPS = dvips
43ENVADD = $(srcdir)\..\..\nt\envadd.bat \
44 "TEXINPUTS=$(srcdir);$(texinfodir);$(emacsdir);$(TEXINPUTS)" \
45 "MAKEINFO=$(MAKEINFO) -I$(srcdir) -I$(emacsdir) -I$(texinfodir)" /C
46
47.SUFFIXES: .dvi .ps .texi
48
49info: $(INFO_TARGETS)
50
51$(infodir)/dir:
52 $(INSTALL_INFO) --info-dir=$(infodir) $(INFO_TARGETS)
53
54dvi: $(DVI_TARGETS)
55
56$(infodir)/eintr$(INFO_EXT): $(INFO_SOURCES)
57 $(MAKEINFO) $(INFO_OPTS) -o $@ $(srcdir)/emacs-lisp-intro.texi
58
59emacs-lisp-intro.dvi: $(INFO_SOURCES)
60 $(ENVADD) $(TEXI2DVI) $(srcdir)/emacs-lisp-intro.texi
61
62emacs-lisp-intro.pdf: $(INFO_SOURCES)
63 $(ENVADD) $(TEXI2PDF) $(srcdir)/emacs-lisp-intro.texi
64
65emacs-lisp-intro.html: $(INFO_SOURCES)
66 $(MAKEINFO) --html -o $@ $(srcdir)/emacs-lisp-intro.texi
67
68.dvi.ps:
69 $(DVIPS) $< -o $@
70
71mostlyclean:
72 - $(DEL) *.log *.cp *.fn *.ky *.pg *.vr *.tp
73
74clean: mostlyclean
75 - $(DEL) *.dvi $(infodir)/eintr$(INFO_EXT)*
76
77distclean: clean
78 - $(DEL) makefile
79
80maintainer-clean: distclean
81 - $(DEL) *.aux *.cps *.fns *.kys *.pgs *.vrs *.toc
82
83# Tell versions [3.59,3.63) of GNU make to not export all variables.
84# Otherwise a system limit (for SysV at least) may be exceeded.
85.NOEXPORT: