diff options
| author | Eli Zaretskii | 2011-01-29 16:48:19 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2011-01-29 16:48:19 +0200 |
| commit | bf3dae7ec340e7cb6f0dc10f76c9a19ed146fd04 (patch) | |
| tree | 8180afef33de01a62214dc9353d3442ff51ffe09 /doc/lispref | |
| parent | 1e338cfca817359985c80482b77723fe48aab953 (diff) | |
| download | emacs-bf3dae7ec340e7cb6f0dc10f76c9a19ed146fd04.tar.gz emacs-bf3dae7ec340e7cb6f0dc10f76c9a19ed146fd04.zip | |
Fix doc/*/makefile.w32-in according to 2011-01-23T10:22:21Z!wl@gnu.org-2011-01-23T10:38:14Z!wl@gnu.org.
doc/lispref/makefile.w32-in (texinfodir): New variable.
(usermanualdir): Remove as redundant with $(emacsdir).
(MAKEINFO): Remove options, leave only program name.
(MAKEINFO_OPTS): New variable.
(texinputdir, $(infodir)/elisp): Use $(MAKEINFO_OPTS).
doc/emacs/makefile.w32-in (MAKEINFO): Remove options, leave only program name.
(MAKEINFO_OPTS): New variable.
(ENVADD, $(infodir)/emacs): Use $(MAKEINFO_OPTS).
(emacs.html): New target.
(clean): Remove emacs.html.
doc/misc/makefile.w32-in (MAKEINFO): Remove options, leave only program name.
(MAKEINFO_OPTS): New variable.
(ENVADD, $(infodir)/emacs): Use $(MAKEINFO_OPTS).
($(infodir)/info, $(infodir)/ccmode, $(infodir)/ada-mode)
($(infodir)/pcl-cvs, $(infodir)/eshell, $(infodir)/cl)
($(infodir)/dbus, $(infodir)/dired-x, $(infodir)/ediff)
($(infodir)/flymake, $(infodir)/forms, $(infodir)/gnus)
($(infodir)/message, $(infodir)/emacs-mime, $(infodir)/sieve)
($(infodir)/pgg, $(infodir)/mh-e, $(infodir)/reftex)
($(infodir)/remember, $(infodir)/sasl, $(infodir)/sc)
($(infodir)/vip, $(infodir)/viper, $(infodir)/widget)
($(infodir)/efaq, $(infodir)/autotype, $(infodir)/calc)
($(infodir)/idlwave, $(infodir)/eudc, $(infodir)/ebrowse)
($(infodir)/woman, $(infodir)/speedbar, $(infodir)/tramp)
($(infodir)/ses, $(infodir)/smtpmail, $(infodir)/org)
($(infodir)/url, $(infodir)/newsticker, $(infodir)/nxml-mode)
($(infodir)/rcirc, $(infodir)/erc, $(infodir)/ert)
($(infodir)/epa, $(infodir)/mairix-el, $(infodir)/auth)
($(infodir)/eieio, $(infodir)/ede, $(infodir)/semantic)
($(infodir)/edt): Use $(MAKEINFO_OPTS).
Diffstat (limited to 'doc/lispref')
| -rw-r--r-- | doc/lispref/ChangeLog | 8 | ||||
| -rw-r--r-- | doc/lispref/makefile.w32-in | 16 |
2 files changed, 17 insertions, 7 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index b693eb3a217..be8803d4cb2 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2011-01-29 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * makefile.w32-in (texinfodir): New variable. | ||
| 4 | (usermanualdir): Remove as redundant with $(emacsdir). | ||
| 5 | (MAKEINFO): Remove options, leave only program name. | ||
| 6 | (MAKEINFO_OPTS): New variable. | ||
| 7 | (texinputdir, $(infodir)/elisp): Use $(MAKEINFO_OPTS). | ||
| 8 | |||
| 1 | 2011-01-25 Chong Yidong <cyd@stupidchicken.com> | 9 | 2011-01-25 Chong Yidong <cyd@stupidchicken.com> |
| 2 | Richard Kim <emacs18@gmail.com> | 10 | Richard Kim <emacs18@gmail.com> |
| 3 | 11 | ||
diff --git a/doc/lispref/makefile.w32-in b/doc/lispref/makefile.w32-in index ee21d8762b9..e0bcd21f2c0 100644 --- a/doc/lispref/makefile.w32-in +++ b/doc/lispref/makefile.w32-in | |||
| @@ -22,20 +22,24 @@ | |||
| 22 | srcdir = . | 22 | srcdir = . |
| 23 | 23 | ||
| 24 | infodir = $(srcdir)/../../info | 24 | infodir = $(srcdir)/../../info |
| 25 | usermanualdir = $(srcdir)/../emacs | ||
| 26 | 25 | ||
| 27 | # Directory with emacsver.texi. | 26 | # Directory with emacsver.texi. |
| 28 | emacsdir = $(srcdir)/../emacs | 27 | emacsdir = $(srcdir)/../emacs |
| 28 | # Directory with the (customized) texinfo.tex file. | ||
| 29 | texinfodir = $(srcdir)/../misc | ||
| 29 | 30 | ||
| 30 | # Redefine `TEX' if `tex' does not invoke plain TeX. For example: | 31 | # Redefine `TEX' if `tex' does not invoke plain TeX. For example: |
| 31 | # TEX=platex | 32 | # TEX=platex |
| 32 | TEX=tex | 33 | TEX=tex |
| 33 | INSTALL_INFO = install-info | 34 | INSTALL_INFO = install-info |
| 34 | MAKEINFO = makeinfo --force | 35 | MAKEINFO = makeinfo |
| 36 | MAKEINFO_OPTS = --force -I$(srcdir) -I$(emacsdir) | ||
| 35 | 37 | ||
| 36 | # The environment variable and its value to add $(srcdir) to the path | 38 | # The environment variable and its value to add $(srcdir) to the path |
| 37 | # searched for TeX input files. | 39 | # searched for TeX input files. |
| 38 | texinputdir = $(srcdir)\..\..\nt\envadd.bat "TEXINPUTS=$(srcdir);$(TEXINPUTS)" /C | 40 | texinputdir = $(srcdir)\..\..\nt\envadd.bat \ |
| 41 | "TEXINPUTS=$(srcdir);$(texinputdir);$(TEXINPUTS)" \ | ||
| 42 | "MAKEINFO=$(MAKEINFO) $(MAKEINFO_OPTS)" /C | ||
| 39 | 43 | ||
| 40 | # The name of the manual: | 44 | # The name of the manual: |
| 41 | VERSION=2.9 | 45 | VERSION=2.9 |
| @@ -110,12 +114,10 @@ $(infodir)/dir: | |||
| 110 | $(INSTALL_INFO) --info-dir=$(infodir) $(infodir)/elisp | 114 | $(INSTALL_INFO) --info-dir=$(infodir) $(infodir)/elisp |
| 111 | 115 | ||
| 112 | $(infodir)/elisp: $(srcs) | 116 | $(infodir)/elisp: $(srcs) |
| 113 | $(MAKEINFO) -I. -I$(srcdir) -I$(emacsdir) \ | 117 | $(MAKEINFO) $(MAKEINFO_OPTS) -o $(infodir)/elisp $(srcdir)/elisp.texi |
| 114 | -o $(infodir)/elisp $(srcdir)/elisp.texi | ||
| 115 | 118 | ||
| 116 | elisp.dvi: $(srcs) | 119 | elisp.dvi: $(srcs) |
| 117 | $(texinputdir) $(TEX) -I $(usermanualdir) -I$(emacsdir) \ | 120 | $(texinputdir) $(TEX) $(srcdir)/elisp.texi |
| 118 | $(srcdir)/elisp.texi | ||
| 119 | 121 | ||
| 120 | clean: | 122 | clean: |
| 121 | - $(DEL) *.toc *.aux *.log *.cp *.cps *.fn *.fns *.tp *.tps \ | 123 | - $(DEL) *.toc *.aux *.log *.cp *.cps *.fn *.fns *.tp *.tps \ |