Fixes for pty handling in gdb-mi.el and process.c.
[emacs.git] / doc / lispintro / makefile.w32-in
bloba8aaf43096e51cdb1333fab855d405c9f74fd423
1 #### -*- Makefile -*- for the Emacs Lisp Introduction manual.
3 # Copyright (C) 2003-2012  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 3 of the License, or
10 # (at your option) 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.  If not, see <http://www.gnu.org/licenses/>.
21 srcdir = .
23 infodir = $(srcdir)/../../info
24 # Directory with the (customized) texinfo.tex file.
25 texinfodir = $(srcdir)/../misc
27 INFO_SOURCES = $(srcdir)/emacs-lisp-intro.texi $(srcdir)/doclicense.texi
28 # The file name eintr must fit within 5 characters, to allow for
29 # -NN extensions to fit into DOS 8+3 limits without clashing
30 INFO_TARGETS = $(infodir)/eintr
31 DVI_TARGETS = emacs-lisp-intro.dvi
33 MAKEINFO = makeinfo
34 INSTALL_INFO = install-info
35 TEXI2DVI = texi2dvi
36 TEXI2PDF = texi2pdf
37 DVIPS = dvips
38 ENVADD = $(srcdir)\..\..\nt\envadd.bat "TEXINPUTS=$(srcdir);$(TEXINPUTS)" \
39          "MAKEINFO=$(MAKEINFO) -I$(srcdir) -I$(texinfodir)" /C
41 .SUFFIXES: .dvi .ps .texi
43 info: $(INFO_TARGETS)
45 $(infodir)/dir:
46         $(INSTALL_INFO) --info-dir=$(infodir) $(INFO_TARGETS)
48 dvi: $(DVI_TARGETS)
50 $(infodir)/eintr: $(INFO_SOURCES)
51         $(MAKEINFO) -o $@ $(srcdir)/emacs-lisp-intro.texi
53 emacs-lisp-intro.dvi: $(INFO_SOURCES)
54         $(ENVADD) $(TEXI2DVI) $(srcdir)/emacs-lisp-intro.texi
56 emacs-lisp-intro.pdf: $(INFO_SOURCES)
57         $(ENVADD) $(TEXI2PDF) $(srcdir)/emacs-lisp-intro.texi
59 emacs-lisp-intro.html: $(INFO_SOURCES)
60         $(MAKEINFO) --html -o $@ $(srcdir)/emacs-lisp-intro.texi
62 .dvi.ps:
63         $(DVIPS) $< -o $@
65 mostlyclean:
66         - $(DEL) *.log *.cp *.fn *.ky *.pg *.vr *.tp
68 clean: mostlyclean
69         - $(DEL) *.dvi $(infodir)/eintr*
71 distclean: clean
72         - $(DEL) makefile
74 maintainer-clean: distclean
75         - $(DEL) *.aux *.cps *.fns *.kys *.pgs *.vrs *.toc
77 # Tell versions [3.59,3.63) of GNU make to not export all variables.
78 # Otherwise a system limit (for SysV at least) may be exceeded.
79 .NOEXPORT: