(latexenc-find-file-coding-system): Don't inherit the EOL part of the
[emacs.git] / lispintro / makefile.w32-in
blob87a8597ccad534469e01c151b2648f3f379c78cc
1 #### -*- Makefile -*- for the Emacs Lisp Introduction manual.
3 # Copyright (C) 2003, 2004 Free Software Foundation, Inc.
5 # This file is part of GNU Emacs.
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 2, or (at your option)
10 # any later version.
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.
17 # You should have received a copy of the GNU General Public License
18 # along with GNU Emacs; see the file COPYING.  If not, write to
19 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 # Boston, MA 02111-1307, USA.
22 srcdir = .
24 infodir = $(srcdir)/../info
26 INFO_SOURCES = $(srcdir)/emacs-lisp-intro.texi
27 # The file name eintr must fit within 5 characters, to allow for
28 # -NN extensions to fit into DOS 8+3 limits without clashing
29 INFO_TARGETS = $(infodir)/eintr
30 DVI_TARGETS = emacs-lisp-intro.dvi
32 MAKEINFO = makeinfo
33 INSTALL_INFO = install-info
34 TEXI2DVI = texi2dvi
35 DVIPS = dvips
36 ENVADD = $(srcdir)\..\nt\envadd.bat "TEXINPUTS=$(srcdir);$(TEXINPUTS)" \
37          "MAKEINFO=$(MAKEINFO) -I$(srcdir)" /C
39 .SUFFIXES: .dvi .ps .texi
41 info: $(INFO_TARGETS)
42         $(INSTALL_INFO) --info-dir=$(infodir) $(INFO_TARGETS)
44 dvi: $(DVI_TARGETS)
46 $(infodir)/eintr: $(INFO_SOURCES)
47         $(MAKEINFO) -o $@ $(srcdir)/emacs-lisp-intro.texi
49 emacs-lisp-intro.dvi: $(INFO_SOURCES)
50         $(ENVADD) $(TEXI2DVI) $(srcdir)/emacs-lisp-intro.texi
52 emacs-lisp-intro.html: $(INFO_SOURCES)
53         $(MAKEINFO) --html -o $@ $(srcdir)/emacs-lisp-intro.texi
55 .dvi.ps:
56         $(DVIPS) $< -o $@
58 mostlyclean:
59         - $(DEL) *.log *.cp *.fn *.ky *.pg *.vr *.tp
61 clean: mostlyclean
62         - $(DEL) *.dvi $(infodir)/eintr*
64 distclean: clean
66 maintainer-clean: distclean
67         - $(DEL) *.aux *.cps *.fns *.kys *.pgs *.vrs *.toc
69 # Tell versions [3.59,3.63) of GNU make to not export all variables.
70 # Otherwise a system limit (for SysV at least) may be exceeded.
71 .NOEXPORT: