* Makefile.in (msys_to_w32, msys_lisppath_to_w32): Remove.
[bpt/emacs.git] / Makefile.in
1 ### @configure_input@
2
3 # Copyright (C) 1992-2013 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 ### Commentary:
21
22 # make all to compile and build Emacs.
23 # make install to install it.
24 # make TAGS to update tags tables.
25 #
26 # make clean or make mostlyclean
27 # Delete all files from the current directory that are normally
28 # created by building the program. Don't delete the files that
29 # record the configuration. Also preserve files that could be made
30 # by building, but normally aren't because the distribution comes
31 # with them.
32 #
33 # Delete `.dvi' files here if they are not part of the distribution.
34 #
35 # make distclean
36 # Delete all files from the current directory that are created by
37 # configuring or building the program. If you have unpacked the
38 # source and built the program without creating any other files,
39 # `make distclean' should leave only the files that were in the
40 # distribution.
41 #
42 # make maintainer-clean
43 # Delete everything from the current directory that can be
44 # reconstructed with this Makefile. This typically includes
45 # everything deleted by distclean, plus more: .elc files,
46 # C source files produced by Bison, tags tables, info files,
47 # and so on.
48 #
49 # make extraclean
50 # Still more severe - delete backup and autosave files, too.
51 #
52 # make bootstrap
53 # Removes all the compiled files to force a new bootstrap from a
54 # clean slate, and then build in the normal way.
55 #
56 # make docs
57 # Make Emacs documentation files from their sources; requires makeinfo.
58
59 SHELL = @SHELL@
60
61 # This may not work with certain non-GNU make's. It only matters when
62 # inheriting a CDPATH not starting with the current directory.
63 CDPATH=
64
65 # If Make doesn't predefine MAKE, set it here.
66 @SET_MAKE@
67
68 # Prevent submakes from outputting "Entering directory ..." and
69 # "Leaving directory..." diagnostics that would mess up 'make echo-info'.
70 QUIET_SUBMAKE = MAKELEVEL=0
71
72 # ==================== Things `configure' Might Edit ====================
73
74 cache_file = @cache_file@
75 CONFIGURE_FLAGS = --cache-file=$(cache_file)
76
77 CC=@CC@
78 CFLAGS=@CFLAGS@
79 LDFLAGS=@LDFLAGS@
80 CPPFLAGS=@CPPFLAGS@
81 EXEEXT=@EXEEXT@
82
83 ### These help us choose version- and architecture-specific directories
84 ### to install files in.
85
86 ### This should be the number of the Emacs version we're building,
87 ### like `18.59' or `19.0'.
88 version=@version@
89
90 ### This should be the name of the configuration we're building Emacs
91 ### for, like `mips-dec-ultrix' or `sparc-sun-sunos'.
92 configuration=@configuration@
93
94 ### The nt/ subdirectory gets built only for MinGW
95 NTDIR=@NTDIR@
96
97 # ==================== Where To Install Things ====================
98
99 # Location to install Emacs.app under GNUstep / Mac OS X.
100 # Later values may use these.
101 ns_appbindir=@ns_appbindir@
102 ns_appresdir=@ns_appresdir@
103 # Either yes or no depending on whether this is a relocatable Emacs.app.
104 ns_self_contained=@ns_self_contained@
105
106 # The default location for installation. Everything is placed in
107 # subdirectories of this directory. The default values for many of
108 # the variables below are expressed in terms of this one, so you may
109 # not need to change them. This defaults to /usr/local.
110 prefix=@prefix@
111
112 # Like `prefix', but used for architecture-specific files.
113 exec_prefix=@exec_prefix@
114
115 # Where to install Emacs and other binaries that people will want to
116 # run directly (like etags).
117 bindir=@bindir@
118
119 # The root of the directory tree for read-only architecture-independent
120 # data files. ${datadir}, ${infodir} and ${mandir} are based on this.
121 datarootdir=@datarootdir@
122
123 # Where to install architecture-independent data files. ${lispdir}
124 # and ${etcdir} are subdirectories of this.
125 datadir=@datadir@
126
127 # Where to install and expect the files that Emacs modifies as it
128 # runs. These files are all architecture-independent.
129 # Right now, this is not used.
130 sharedstatedir=@sharedstatedir@
131
132 # Where to install and expect executable files to be run by Emacs
133 # rather than directly by users (and other architecture-dependent
134 # data, although Emacs does not have any). The executables
135 # are actually installed in ${archlibdir}, which is (normally)
136 # a subdirectory of this.
137 libexecdir=@libexecdir@
138
139 # Where to install Emacs's man pages.
140 # Note they contain cross-references that expect them to be in section 1.
141 mandir=@mandir@
142 man1dir=$(mandir)/man1
143
144 # Where to install and expect the info files describing Emacs.
145 infodir=@infodir@
146 # Info files not in the doc/misc directory (we get those via make echo-info).
147 INFO_EXT=@INFO_EXT@
148 INFO_NONMISC=emacs$(INFO_EXT) eintr$(INFO_EXT) elisp$(INFO_EXT)
149
150 # If no makeinfo was found and configured --without-makeinfo, "no"; else "yes".
151 HAVE_MAKEINFO=@HAVE_MAKEINFO@
152
153 # Directory for local state files for all programs.
154 localstatedir=@localstatedir@
155
156 # Where to look for bitmap files.
157 bitmapdir=@bitmapdir@
158
159 # Where to find the source code. The source code for Emacs's C kernel is
160 # expected to be in ${srcdir}/src, and the source code for Emacs's
161 # utility programs is expected to be in ${srcdir}/lib-src. This is
162 # set by the configure script's `--srcdir' option.
163
164 # We use $(srcdir) explicitly in dependencies so as not to depend on VPATH.
165 srcdir=@srcdir@
166 abs_srcdir=@abs_srcdir@
167 # MinGW CPPFLAGS may use this.
168 abs_top_srcdir=@abs_top_srcdir@
169
170 # Where the manpage source files are kept.
171 mansrcdir=$(srcdir)/doc/man
172
173 # Tell make where to find source files; this is needed for the makefiles.
174 VPATH=@srcdir@
175
176 # Where to find the application default.
177 x_default_search_path=@x_default_search_path@
178
179 # Where the etc/emacs.desktop file is to be installed.
180 desktopdir=$(datarootdir)/applications
181
182 # Where the etc/images/icons/hicolor directory is to be installed.
183 icondir=$(datarootdir)/icons
184
185 # The source directory for the icon files.
186 iconsrcdir=$(srcdir)/etc/images/icons
187
188 # ==================== Emacs-specific directories ====================
189
190 # These variables hold the values Emacs will actually use. They are
191 # based on the values of the standard Make variables above.
192
193 # Where to install the lisp, leim files distributed with
194 # Emacs. This includes the Emacs version, so that the
195 # lisp files for different versions of Emacs will install
196 # themselves in separate directories.
197 lispdir=@lispdir@
198 leimdir=@leimdir@
199
200 # Directories Emacs should search for standard lisp files.
201 # The default is ${lispdir}:${leimdir}.
202 standardlisppath=@standardlisppath@
203
204 # Directories Emacs should search for lisp files specific to this
205 # site (i.e. customizations), before consulting ${standardlisppath}.
206 # This should be a colon-separated list of directories.
207 locallisppath=@locallisppath@
208
209 # Where Emacs will search to find its lisp files. Before
210 # changing this, check to see if your purpose wouldn't
211 # better be served by changing locallisppath. This
212 # should be a colon-separated list of directories.
213 # The default is ${locallisppath}:${standardlisppath}.
214 lisppath=@lisppath@
215
216 # Where Emacs will search for its lisp files while
217 # building. This is only used during the process of
218 # compiling Emacs, to help Emacs find its lisp files
219 # before they've been installed in their final location.
220 # This should be a colon-separated list of directories.
221 # Normally it points to the lisp/ directory in the sources.
222 buildlisppath=${abs_srcdir}/lisp
223
224 # Where to install the other architecture-independent
225 # data files distributed with Emacs (like the tutorial,
226 # the cookie recipes and the Zippy database). This path
227 # usually contains the Emacs version number, so the data
228 # files for multiple versions of Emacs may be installed
229 # at once.
230 etcdir=@etcdir@
231
232 # Where to put executables to be run by Emacs rather than
233 # the user. This path usually includes the Emacs version
234 # and configuration name, so that multiple configurations
235 # for multiple versions of Emacs may be installed at
236 # once.
237 archlibdir=@archlibdir@
238
239 # Where to put the etc/DOC file.
240 etcdocdir=@etcdocdir@
241
242 # Where to install Emacs game score files.
243 gamedir=@gamedir@
244
245 # ==================== Utility Programs for the Build ====================
246
247 # Allow the user to specify the install program.
248 # Note that if the system does not provide a suitable install,
249 # configure will use build-aux/install-sh. Annoyingly, it does
250 # not use an absolute path. So we must take care to always run
251 # INSTALL-type commands from the directory containing the Makefile.
252 # This explains (I think) the cd thisdir seen in several install rules.
253 INSTALL = @INSTALL@
254 INSTALL_PROGRAM = @INSTALL_PROGRAM@
255 INSTALL_DATA = @INSTALL_DATA@
256 INSTALL_INFO = @INSTALL_INFO@
257 # By default, we uphold the dignity of our programs.
258 INSTALL_STRIP =
259 MKDIR_P = @MKDIR_P@
260 # Create a link to a file in the same directory as the target.
261 LN_S_FILEONLY = @LN_S_FILEONLY@
262
263 # We use gzip to compress installed .el files.
264 GZIP_PROG = @GZIP_PROG@
265
266 # ============================= Targets ==============================
267
268 # Program name transformation.
269 TRANSFORM = @program_transform_name@
270
271 # What emacs should be called when installed.
272 EMACS_NAME = `echo emacs | sed '$(TRANSFORM)'`
273 EMACS = ${EMACS_NAME}${EXEEXT}
274 EMACSFULL = `echo emacs-${version} | sed '$(TRANSFORM)'`${EXEEXT}
275
276 # Subdirectories to make recursively.
277 SUBDIR = $(NTDIR) lib lib-src src lisp leim
278
279 # The subdir makefiles created by config.status.
280 SUBDIR_MAKEFILES_IN = @SUBDIR_MAKEFILES_IN@
281 SUBDIR_MAKEFILES = `echo $(SUBDIR_MAKEFILES_IN:.in=) | sed 's|$(srcdir)/||g'`
282
283 # Subdirectories to install, and where they'll go. lib-src's and nt's
284 # makefiles know how to install them, so we don't do that here.
285 # Directories that cannot simply be copied, eg info, are treated
286 # separately. quail appears twice because in out-of-tree builds, it
287 # exists twice.
288 COPYDIR = ${srcdir}/etc ${srcdir}/lisp ${srcdir}/leim/ja-dic ${srcdir}/leim/quail leim/quail
289 COPYDESTS = "$(DESTDIR)${etcdir}" "$(DESTDIR)${lispdir}" "$(DESTDIR)${leimdir}/ja-dic" "$(DESTDIR)${leimdir}/quail" "$(DESTDIR)${leimdir}/quail"
290
291 all: ${SUBDIR}
292
293 .PHONY: all ${SUBDIR} blessmail epaths-force epaths-force-w32 FRC
294
295 removenullpaths=sed -e 's/^:*//' -e 's/:*$$//g' -e 's/::*/:/g'
296
297 # Generate epaths.h from epaths.in. This target is invoked by `configure'.
298 # See comments in configure.ac for why it is done this way, as opposed
299 # to just letting configure generate epaths.h from epaths.in in a
300 # similar way to how Makefile is made from Makefile.in.
301 epaths-force: FRC
302 @(standardlisppath=`echo "${standardlisppath}" | ${removenullpaths}` ; \
303 locallisppath=`echo "${locallisppath}" | ${removenullpaths}` ; \
304 buildlisppath=`echo "${buildlisppath}" | ${removenullpaths}` ; \
305 x_default_search_path=`echo ${x_default_search_path}`; \
306 gamedir=`echo ${gamedir}`; \
307 sed < ${srcdir}/src/epaths.in > epaths.h.$$$$ \
308 -e 's;\(#.*PATH_LOADSEARCH\).*$$;\1 "'"$${standardlisppath}"'";' \
309 -e 's;\(#.*PATH_SITELOADSEARCH\).*$$;\1 "'"$${locallisppath}"'";' \
310 -e 's;\(#.*PATH_DUMPLOADSEARCH\).*$$;\1 "'"$${buildlisppath}"'";' \
311 -e 's;\(#.*PATH_EXEC\).*$$;\1 "${archlibdir}";' \
312 -e 's;\(#.*PATH_INFO\).*$$;\1 "${infodir}";' \
313 -e 's;\(#.*PATH_DATA\).*$$;\1 "${etcdir}";' \
314 -e 's;\(#.*PATH_BITMAPS\).*$$;\1 "${bitmapdir}";' \
315 -e 's;\(#.*PATH_X_DEFAULTS\).*$$;\1 "${x_default_search_path}";' \
316 -e 's;\(#.*PATH_GAME\).*$$;\1 "${gamedir}";' \
317 -e 's;\(#.*PATH_DOC\).*$$;\1 "${etcdocdir}";') && \
318 ${srcdir}/build-aux/move-if-change epaths.h.$$$$ src/epaths.h
319
320 # Replace "${w32prefix}" with '%emacs_dir%' (which expands to install
321 # directory at runtime).
322 msys_w32prefix_subst=sed -e 's!\(^\|;\)'"$${w32prefixpattern}"'\([;/]\|$$\)!\1%emacs_dir%\2!g'
323
324 # Quote Sed special characters (except backslash and newline) with
325 # a double backslash.
326 msys_sed_sh_escape=sed -e 's/[];$$*.^[]/\\\\&/g'
327
328 # The w32 build needs a slightly different editing, and it uses
329 # nt/epaths.nt as the template.
330 #
331 # Use the value of ${locallisppath} supplied by `configure',
332 # to support the --enable-locallisppath argument.
333 #
334 # In this case, the paths written to 'src/epaths.h' must be in native
335 # MS-Windows format (e.g. 'c:/foo/bar'), because temacs is a MinGW
336 # program that doesn't support MSYS-style paths (e.g. '/c/foo/bar' or
337 # '/foo/bar').
338 epaths-force-w32: FRC
339 @(w32srcdir=`${srcdir}/build-aux/msys-to-w32 "${srcdir}"`; \
340 w32prefix=`${srcdir}/build-aux/msys-to-w32 "${prefix}" N`; \
341 w32prefixpattern=`echo "${w32prefix}" | ${msys_sed_sh_escape}` ; \
342 w32locallisppath=`${srcdir}/build-aux/msys-to-w32 "${locallisppath}" N ":" "\\;" | ${msys_w32prefix_subst}` ; \
343 sed < ${srcdir}/nt/epaths.nt > epaths.h.$$$$ \
344 -e 's;\(#.*PATH_SITELOADSEARCH\).*$$;\1 "'"$${w32locallisppath}"'";' \
345 -e '/^.*#/s/@VER@/${version}/g' \
346 -e '/^.*#/s/@CFG@/${configuration}/g' \
347 -e "/^.*#/s|@SRC@|$${w32srcdir}|g") && \
348 ${srcdir}/build-aux/move-if-change epaths.h.$$$$ src/epaths.h
349
350 # If lib/Makefile would build files in '.', then build them before
351 # building 'lib', to avoid races with parallel makes.
352 lib: am--refresh
353
354 lib-src src: $(NTDIR) lib
355
356 src: lib-src
357
358 # We need to build `emacs' in `src' to compile the *.elc files in `lisp'
359 # and `leim'.
360 lisp leim: src
361
362 # These targets should be "${SUBDIR} without `src'".
363 lib lib-src lisp leim nt: Makefile FRC
364 cd $@ && $(MAKE) all $(MFLAGS) \
365 CC='${CC}' CFLAGS='${CFLAGS}' CPPFLAGS='${CPPFLAGS}' \
366 LDFLAGS='${LDFLAGS}' MAKE='${MAKE}'
367
368 # Pass to src/Makefile.in an additional BOOTSTRAPEMACS variable which
369 # is either set to bootstrap-emacs (in case bootstrap-emacs has not been
370 # constructed yet) or the empty string (otherwise).
371 # src/Makefile.in uses it to implement conditional dependencies, so that
372 # files that need bootstrap-emacs to be built do not additionally need
373 # to be kept fresher than bootstrap-emacs. Otherwise changing a single
374 # file src/foo.c forces dumping a new bootstrap-emacs, then re-byte-compiling
375 # all preloaded elisp files, and only then dump the actual src/emacs, which
376 # is not wrong, but is overkill in 99.99% of the cases.
377 src: Makefile FRC
378 dirstate='.bzr/checkout/dirstate'; \
379 vcswitness='$$(srcdir)/../'$$dirstate; \
380 [ -r "$(srcdir)/$$dirstate" ] || vcswitness=''; \
381 cd $@ || exit; \
382 boot=bootstrap-emacs$(EXEEXT); \
383 [ ! -x "$$boot" ] || boot=''; \
384 $(MAKE) all $(MFLAGS) \
385 CC='${CC}' CFLAGS='${CFLAGS}' CPPFLAGS='${CPPFLAGS}' \
386 LDFLAGS='${LDFLAGS}' MAKE='${MAKE}' BOOTSTRAPEMACS="$$boot" \
387 VCSWITNESS="$$vcswitness"
388
389 blessmail: Makefile src FRC
390 cd lib-src && $(MAKE) maybe-blessmail $(MFLAGS) \
391 MAKE='${MAKE}' archlibdir='$(archlibdir)'
392
393 # We used to have one rule per */Makefile.in, but that leads to race
394 # conditions with parallel makes, so let's assume that the time stamp on
395 # ./Makefile is representative of the time stamp on all the other Makefiles.
396 #
397 # config.status overrides MAKEFILE_NAME with a bogus name when creating
398 # src/epaths.h, so that 'make epaths-force' does not recursively invoke
399 # config.status and overwrite config.status while executing it (Bug#11214).
400 #
401 # 'make bootstrap' overrides MAKEFILE_NAME to a nonexistent file but
402 # then attempts to build that file. This forces 'Makefile', 'lib/Makefile',
403 # etc. to be built without running into similar recursion problems.
404 MAKEFILE_NAME = Makefile
405 $(MAKEFILE_NAME): config.status $(srcdir)/src/config.in \
406 $(srcdir)/Makefile.in $(SUBDIR_MAKEFILES_IN) $(srcdir)/src/lisp.mk
407 MAKE='$(MAKE)' ./config.status
408
409 # Don't erase these files if make is interrupted while refreshing them.
410 .PRECIOUS: Makefile config.status
411
412 config.status: ${srcdir}/configure ${srcdir}/lisp/version.el
413 if [ -x ./config.status ]; then \
414 $(CFG) ./config.status --recheck; \
415 else \
416 $(CFG) $(srcdir)/configure $(CONFIGURE_FLAGS); \
417 fi
418
419 AUTOCONF_INPUTS = $(srcdir)/configure.ac $(srcdir)/aclocal.m4
420
421 $(srcdir)/configure: $(AUTOCONF_INPUTS)
422 cd ${srcdir} && autoconf
423
424 ACLOCAL_INPUTS = $(srcdir)/configure.ac $(srcdir)/m4/gnulib-comp.m4
425 $(srcdir)/aclocal.m4: $(ACLOCAL_INPUTS)
426 cd $(srcdir) && aclocal -I m4
427
428 AUTOMAKE_INPUTS = $(srcdir)/aclocal.m4 $(srcdir)/lib/Makefile.am \
429 $(srcdir)/lib/gnulib.mk
430 $(srcdir)/lib/Makefile.in: $(AUTOMAKE_INPUTS)
431 cd $(srcdir) && automake --gnu -a -c lib/Makefile
432
433 # Regenerate files that this makefile would have made, if this makefile
434 # had been built by Automake. The name 'am--refresh' is for
435 # compatibility with subsidiary Automake-generated makefiles.
436 am--refresh: $(srcdir)/aclocal.m4 $(srcdir)/configure $(srcdir)/src/config.in
437 .PHONY: am--refresh
438
439 $(srcdir)/src/config.in: $(srcdir)/src/stamp-h.in
440 @ # Usually, there's no need to rebuild src/config.in just
441 @ # because stamp-h.in has changed (since building stamp-h.in
442 @ # refreshes config.in as well), but if config.in is missing
443 @ # then we really need to do something more.
444 [ -r "$@" ] || ( cd ${srcdir} && autoheader )
445 $(srcdir)/src/stamp-h.in: $(AUTOCONF_INPUTS)
446 cd ${srcdir} && autoheader
447 rm -f $(srcdir)/src/stamp-h.in
448 echo timestamp > $(srcdir)/src/stamp-h.in
449
450 # ==================== Installation ====================
451
452 .PHONY: install install-arch-dep install-arch-indep install-etcdoc install-info
453 .PHONY: install-man install-etc install-strip install-$(NTDIR)
454 .PHONY: uninstall uninstall-$(NTDIR)
455
456 ## If we let lib-src do its own installation, that means we
457 ## don't have to duplicate the list of utilities to install in
458 ## this Makefile as well.
459
460 install: all install-arch-indep install-etcdoc install-arch-dep install-$(NTDIR) blessmail
461 @true
462
463 ## Ensure that $subdir contains a subdirs.el file.
464 ## Here and elsewhere, we set the umask so that any created files are
465 ## world-readable.
466 ## TODO it might be good to warn about non-standard permissions of
467 ## pre-existing directories, but that does not seem easy.
468 write_subdir=if [ -f "$${subdir}/subdirs.el" ]; \
469 then true; \
470 else \
471 umask 022; \
472 ${MKDIR_P} "$${subdir}"; \
473 (echo "(if (fboundp 'normal-top-level-add-subdirs-to-load-path)"; \
474 echo " (normal-top-level-add-subdirs-to-load-path))") \
475 > "$${subdir}/subdirs.el"; \
476 fi
477
478 ### Install the executables that were compiled specifically for this machine.
479 ### We do install-arch-indep first because the executable needs the
480 ### Lisp files and DOC file to work properly.
481 install-arch-dep: src install-arch-indep install-etcdoc install-$(NTDIR)
482 umask 022; ${MKDIR_P} "$(DESTDIR)${bindir}"
483 cd lib-src && \
484 $(MAKE) install $(MFLAGS) prefix="${prefix}" \
485 exec_prefix="${exec_prefix}" bindir="${bindir}" \
486 libexecdir="${libexecdir}" archlibdir="${archlibdir}" \
487 INSTALL_STRIP=${INSTALL_STRIP}
488 if test "${ns_self_contained}" = "no"; then \
489 ${INSTALL_PROGRAM} $(INSTALL_STRIP) src/emacs${EXEEXT} "$(DESTDIR)${bindir}/$(EMACSFULL)" || exit 1 ; \
490 chmod 1755 "$(DESTDIR)${bindir}/$(EMACSFULL)" || true; \
491 if test "x${NO_BIN_LINK}" = x; then \
492 rm -f "$(DESTDIR)${bindir}/$(EMACS)" ; \
493 cd "$(DESTDIR)${bindir}" && $(LN_S_FILEONLY) $(EMACSFULL) $(EMACS); \
494 fi; \
495 else \
496 subdir=${ns_appresdir}/site-lisp; \
497 ${write_subdir} || exit 1; \
498 rm -rf ${ns_appresdir}/share; \
499 fi
500
501 ### Windows-specific install target for installing programs produced
502 ### in nt/, and its Posix do-nothing shadow.
503 install-:
504 install-nt:
505 cd $(NTDIR) && \
506 $(MAKE) install $(MFLAGS) prefix="${prefix}" \
507 exec_prefix="${exec_prefix}" bindir="${bindir}" \
508 libexecdir="${libexecdir}" archlibdir="${archlibdir}" \
509 INSTALL_STRIP=${INSTALL_STRIP}
510
511 ## In the share directory, we are deleting:
512 ## applications (with emacs.desktop, also found in etc/)
513 ## emacs (basically empty except for unneeded site-lisp directories)
514 ## icons (duplicates etc/images/icons/hicolor)
515
516 ## This is install-etc for everything except self-contained-ns builds.
517 ## For them, it is empty.
518 INSTALL_ARCH_INDEP_EXTRA = @INSTALL_ARCH_INDEP_EXTRA@
519
520 ## http://lists.gnu.org/archive/html/emacs-devel/2007-10/msg01672.html
521 ## Needs to be the user running install, so configure can't set it.
522 set_installuser=for installuser in $${LOGNAME} $${USERNAME} $${USER} \
523 `id -un 2> /dev/null`; do \
524 [ -n "$${installuser}" ] && break ; \
525 done
526
527 ### Install the files that are machine-independent.
528 ### Most of them come straight from the distribution; the exception is
529 ### the DOC file, which is copied from the build directory.
530
531 ## We delete each directory in ${COPYDESTS} before we copy into it;
532 ## that way, we can reinstall over directories that have been put in
533 ## place with their files read-only (perhaps because they are checked
534 ## into RCS). In order to make this safe, we make sure that the
535 ## source exists and is distinct from the destination.
536
537 ## We delete etc/DOC* because there may be irrelevant DOC files from
538 ## other builds in the source directory. This is ok because we just
539 ## deleted the entire installed etc/ directory and recreated it.
540 ## install-etcdoc installs the relevant DOC.
541
542 ## Note that we install etc/refcards/*.ps if present.
543 ## TODO we should compress these if GZIP_PROG is set.
544 ## It would be simpler to have a separate install rule for etc/refcards
545 ## (maybe move it to doc/refcards?).
546
547 ## Note that the Makefiles in the etc directory are potentially useful
548 ## in an installed Emacs, so should not be excluded.
549
550 ## We used to create locallisppath, but if it points to non-standard
551 ## locations, is not really Emacs's job to create these directories,
552 ## so it is no longer done.
553
554 ## Note that we use tar instead of plain old cp -R/-r because the latter
555 ## is apparently not portable (even in 2012!).
556 ## http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00278.html
557 ## I have no idea which platforms Emacs supports where cp -R does not
558 ## work correctly, and therefore no idea when tar can be replaced.
559 ## See also these comments from 2004 about cp -r working fine:
560 ## http://lists.gnu.org/archive/html/autoconf-patches/2004-11/msg00005.html
561 install-arch-indep: lisp leim install-info install-man ${INSTALL_ARCH_INDEP_EXTRA}
562 -set ${COPYDESTS} ; \
563 unset CDPATH; \
564 $(set_installuser); \
565 for dir in ${COPYDIR} ; do \
566 [ -d $${dir} ] || exit 1 ; \
567 dest="$$1" ; shift ; \
568 if [ -d "$${dest}" ]; then \
569 exp_dest=`cd "$${dest}" && /bin/pwd`; \
570 [ "$$exp_dest" = "`cd $${dir} && /bin/pwd`" ] && continue ; \
571 else true; \
572 fi; \
573 if [ "$${dir}" = "leim/quail" ]; then \
574 [ "`cd $${dir} && /bin/pwd`" = "`cd ${srcdir}/leim/quail && /bin/pwd`" ] && \
575 continue ; \
576 else \
577 rm -rf "$${dest}" ; \
578 umask 022; ${MKDIR_P} "$${dest}" ; \
579 fi ; \
580 echo "Copying $${dir} to $${dest}..." ; \
581 (cd $${dir}; tar -chf - . ) \
582 | (cd "$${dest}"; umask 022; \
583 tar -xvf - && cat > /dev/null) || exit 1; \
584 if [ "$${dir}" = "${srcdir}/etc" ]; then \
585 rm -f "$${dest}/DOC"* ; \
586 rm -f "$${dest}/refcards"/*.aux "$${dest}/refcards"/*.dvi; \
587 rm -f "$${dest}/refcards"/*.log; \
588 else true; \
589 fi; \
590 (cd "$${dest}" || exit 1; \
591 for subdir in `find . -type d -print` ; do \
592 chmod a+rx $${subdir} ; \
593 rm -f $${subdir}/.gitignore ; \
594 rm -f $${subdir}/.arch-inventory ; \
595 rm -f $${subdir}/.DS_Store ; \
596 rm -f $${subdir}/\#* ; \
597 rm -f $${subdir}/.\#* ; \
598 rm -f $${subdir}/*~ ; \
599 rm -f $${subdir}/*.orig ; \
600 rm -f $${subdir}/ChangeLog* ; \
601 [ "$${dir}" != "${srcdir}/etc" ] && \
602 rm -f $${subdir}/[mM]akefile*[.-]in $${subdir}/[mM]akefile ; \
603 done ); \
604 find "$${dest}" -exec chown $${installuser} {} ';' ;\
605 done
606 -rm -f "$(DESTDIR)${leimdir}/leim-list.el"
607 ${INSTALL_DATA} leim/leim-list.el "$(DESTDIR)${leimdir}/leim-list.el"
608 -rm -f "$(DESTDIR)${lispdir}/subdirs.el"
609 umask 022; $(srcdir)/build-aux/update-subdirs "$(DESTDIR)${lispdir}"
610 subdir="$(DESTDIR)${datadir}/emacs/${version}/site-lisp" ; \
611 ${write_subdir}
612 subdir="$(DESTDIR)${datadir}/emacs/site-lisp" ; \
613 ${write_subdir} || true
614 [ -z "${GZIP_PROG}" ] || \
615 ( echo "Compressing *.el ..." ; \
616 unset CDPATH; \
617 thisdir=`/bin/pwd`; \
618 for dir in "$(DESTDIR)${lispdir}" "$(DESTDIR)${leimdir}"; do \
619 cd "$${thisdir}" ; \
620 cd "$${dir}" || exit 1 ; \
621 for f in `find . -name "*.elc" -print`; do \
622 f_el=`echo "$$f" | sed 's/.elc$$/.el/'`; \
623 ${GZIP_PROG} -9n "$$f_el" ; \
624 done ; \
625 done )
626 -chmod -R a+r "$(DESTDIR)${datadir}/emacs/${version}" ${COPYDESTS}
627
628 ## The above chmods are needed because "umask 022; tar ..." is not
629 ## guaranteed to do the right thing; eg if we are root and tar is
630 ## preserving source permissions.
631
632 ## Note that install-arch-indep deletes and recreates the entire
633 ## installed etc/ directory, so we need it to run before this does.
634 install-etcdoc: src install-arch-indep
635 -unset CDPATH; \
636 umask 022; ${MKDIR_P} "$(DESTDIR)${etcdocdir}" ; \
637 exp_etcdocdir=`cd "$(DESTDIR)${etcdocdir}"; /bin/pwd`; \
638 if [ "`cd ./etc; /bin/pwd`" != "$$exp_etcdocdir" ]; \
639 then \
640 docfile="DOC"; \
641 echo "Copying etc/$${docfile} to $(DESTDIR)${etcdocdir} ..." ; \
642 ${INSTALL_DATA} etc/$${docfile} "$(DESTDIR)${etcdocdir}/$${docfile}"; \
643 $(set_installuser); \
644 chown $${installuser} "$(DESTDIR)${etcdocdir}/$${docfile}" || true ; \
645 else true; fi
646
647 install-info: info
648 umask 022; ${MKDIR_P} "$(DESTDIR)${infodir}"
649 -unset CDPATH; \
650 thisdir=`/bin/pwd`; \
651 exp_infodir=`cd "$(DESTDIR)${infodir}" && /bin/pwd`; \
652 if [ "`cd ${srcdir}/info && /bin/pwd`" = "$$exp_infodir" ]; then \
653 true; \
654 else \
655 (cd "$(DESTDIR)${infodir}"; \
656 [ -f dir ] || \
657 (cd "$${thisdir}"; \
658 ${INSTALL_DATA} ${srcdir}/info/dir "$(DESTDIR)${infodir}/dir") ); \
659 info_misc=`cd doc/misc && $(QUIET_SUBMAKE) $(MAKE) -s echo-info`; \
660 cd ${srcdir}/info ; \
661 for elt in ${INFO_NONMISC} $${info_misc}; do \
662 test "$(HAVE_MAKEINFO)" = "no" && test ! -f $$elt && continue; \
663 for f in `ls $$elt $$elt-[1-9] $$elt-[1-9][0-9] 2>/dev/null`; do \
664 (cd "$${thisdir}"; \
665 ${INSTALL_DATA} ${srcdir}/info/$$f "$(DESTDIR)${infodir}/$$f"); \
666 [ -n "${GZIP_PROG}" ] || continue ; \
667 rm -f "$(DESTDIR)${infodir}/$$f.gz"; \
668 ${GZIP_PROG} -9n "$(DESTDIR)${infodir}/$$f"; \
669 done; \
670 (cd "$${thisdir}"; \
671 ${INSTALL_INFO} --info-dir="$(DESTDIR)${infodir}" "$(DESTDIR)${infodir}/$$elt"); \
672 done; \
673 fi
674
675 ## "gzip || true" is because some gzips exit with non-zero status
676 ## if compression would not reduce the file size. Eg, the gzip in
677 ## OpenBSD 4.9 seems to do this (2013/03). In Emacs, this can
678 ## only happen with the tiny ctags.1 manpage. We don't really care if
679 ## ctags.1 is compressed or not. "gzip -f" is another option here,
680 ## but not sure if portable.
681 install-man:
682 umask 022; ${MKDIR_P} "$(DESTDIR)${man1dir}"
683 thisdir=`/bin/pwd`; \
684 cd ${mansrcdir}; \
685 for page in *.1; do \
686 dest=`echo "$${page}" | sed -e 's/\.1$$//' -e '$(TRANSFORM)'`.1; \
687 (cd "$${thisdir}"; \
688 ${INSTALL_DATA} ${mansrcdir}/$${page} "$(DESTDIR)${man1dir}/$${dest}"); \
689 [ -n "${GZIP_PROG}" ] || continue ; \
690 rm -f "$(DESTDIR)${man1dir}/$${dest}.gz"; \
691 ${GZIP_PROG} -9n "$(DESTDIR)${man1dir}/$${dest}" || true; \
692 done
693
694 ## Install those items from etc/ that need to end up elsewhere.
695
696 ## If you prefer, choose "emacs22" at installation time.
697 ## Note: emacs22 does not have all the resolutions.
698 EMACS_ICON=emacs
699
700 install-etc:
701 umask 022; ${MKDIR_P} "$(DESTDIR)${desktopdir}"
702 tmp=etc/emacs.tmpdesktop; rm -f $${tmp}; \
703 emacs_name=`echo emacs | sed '$(TRANSFORM)'`; \
704 sed -e "/^Exec=emacs/ s/emacs/$${emacs_name}/" \
705 -e "/^Icon=emacs/ s/emacs/$${emacs_name}/" \
706 ${srcdir}/etc/emacs.desktop > $${tmp}; \
707 ${INSTALL_DATA} $${tmp} "$(DESTDIR)${desktopdir}/${EMACS_NAME}.desktop"; \
708 rm -f $${tmp}
709 thisdir=`/bin/pwd`; \
710 cd ${iconsrcdir} || exit 1; umask 022 ; \
711 for dir in */*/apps */*/mimetypes; do \
712 [ -d $${dir} ] || continue ; \
713 ( cd "$${thisdir}"; ${MKDIR_P} "$(DESTDIR)${icondir}/$${dir}" ) ; \
714 for icon in $${dir}/${EMACS_ICON}[.-]*; do \
715 [ -r $${icon} ] || continue ; \
716 ext=`echo "$${icon}" | sed -e 's|.*\.||'`; \
717 dest=`echo "$${icon}" | sed -e 's|.*/||' -e "s|\.$${ext}$$||" -e 's/$(EMACS_ICON)/emacs/' -e '$(TRANSFORM)'`.$${ext} ; \
718 ( cd "$${thisdir}"; \
719 ${INSTALL_DATA} ${iconsrcdir}/$${icon} "$(DESTDIR)${icondir}/$${dir}/$${dest}" ) \
720 || exit 1; \
721 done ; \
722 done
723
724 ### Build Emacs and install it, stripping binaries while installing them.
725 install-strip:
726 $(MAKE) $(MFLAGS) INSTALL_STRIP=-s install
727
728 ### Delete all the installed files that the `install' target would
729 ### create (but not the noninstalled files such as `make all' would create).
730 ###
731 ### Don't delete the lisp and etc directories if they're in the source tree.
732 uninstall: uninstall-$(NTDIR) uninstall-doc
733 cd lib-src && \
734 $(MAKE) $(MFLAGS) uninstall \
735 prefix="${prefix}" exec_prefix="${exec_prefix}" \
736 bindir="${bindir}" libexecdir="${libexecdir}" \
737 archlibdir="${archlibdir}"
738
739 -unset CDPATH; \
740 for dir in "$(DESTDIR)${lispdir}" "$(DESTDIR)${etcdir}" ; do \
741 if [ -d "$${dir}" ]; then \
742 case `cd "$${dir}" ; /bin/pwd` in \
743 "`cd ${srcdir} ; /bin/pwd`"* ) ;; \
744 * ) rm -rf "$${dir}" ;; \
745 esac ; \
746 case "$${dir}" in \
747 "$(DESTDIR)${datadir}/emacs/${version}"/* ) \
748 rm -rf "$(DESTDIR)${datadir}/emacs/${version}" \
749 ;; \
750 esac ; \
751 fi ; \
752 done
753 -rm -rf "$(DESTDIR)${libexecdir}/emacs/${version}"
754 thisdir=`/bin/pwd`; \
755 (info_misc=`cd doc/misc && $(QUIET_SUBMAKE) $(MAKE) -s echo-info`; \
756 if cd "$(DESTDIR)${infodir}"; then \
757 for elt in ${INFO_NONMISC} $${info_misc}; do \
758 (cd "$${thisdir}"; \
759 $(INSTALL_INFO) --remove --info-dir="$(DESTDIR)${infodir}" "$(DESTDIR)${infodir}/$$elt"); \
760 if [ -n "${GZIP_PROG}" ]; then \
761 ext=.gz; else ext=; fi; \
762 rm -f $$elt$$ext $$elt-[1-9]$$ext $$elt-[1-9][0-9]$$ext; \
763 done; \
764 fi)
765 (if [ -n "${GZIP_PROG}" ]; then \
766 ext=.gz; else ext=; fi; \
767 if cd ${mansrcdir}; then \
768 for page in *.1; do \
769 rm -f "$(DESTDIR)${man1dir}"/`echo "$${page}" | sed -e 's/\.1$$//' -e '$(TRANSFORM)'`.1$$ext; done; \
770 fi)
771 (cd "$(DESTDIR)${bindir}" && rm -f $(EMACSFULL) $(EMACS) || true)
772 (if cd "$(DESTDIR)${icondir}"; then \
773 rm -f hicolor/*x*/apps/${EMACS_NAME}.png \
774 hicolor/scalable/apps/${EMACS_NAME}.svg \
775 hicolor/scalable/mimetypes/`echo emacs-document | sed '$(TRANSFORM)'`.svg; \
776 fi)
777 -rm -f "$(DESTDIR)${desktopdir}/${EMACS_NAME}.desktop"
778 for file in snake-scores tetris-scores; do \
779 file="$(DESTDIR)${gamedir}/$${file}"; \
780 [ -s "$${file}" ] || rm -f "$$file"; \
781 done
782
783 ### Windows-specific uninstall target for removing programs produced
784 ### in nt/, and its Posix do-nothing shadow.
785 uninstall-:
786 uninstall-nt:
787 cd $(NTDIR) && \
788 $(MAKE) $(MFLAGS) uninstall \
789 prefix="${prefix}" exec_prefix="${exec_prefix}" \
790 bindir="${bindir}" libexecdir="${libexecdir}" \
791 archlibdir="${archlibdir}"
792
793 FRC:
794
795 # ==================== Cleaning up and miscellanea ====================
796
797 .PHONY: mostlyclean clean distclean bootstrap-clean maintainer-clean extraclean
798
799 ### `mostlyclean'
800 ### Like `clean', but may refrain from deleting a few files that people
801 ### normally don't want to recompile. For example, the `mostlyclean'
802 ### target for GCC does not delete `libgcc.a', because recompiling it
803 ### is rarely necessary and takes a lot of time.
804 mostlyclean: FRC
805 cd src && $(MAKE) $(MFLAGS) mostlyclean
806 cd oldXMenu && $(MAKE) $(MFLAGS) mostlyclean
807 cd lwlib && $(MAKE) $(MFLAGS) mostlyclean
808 cd lib && $(MAKE) $(MFLAGS) mostlyclean
809 cd lib-src && $(MAKE) $(MFLAGS) mostlyclean
810 cd nt && $(MAKE) $(MFLAGS) mostlyclean
811 -cd doc/emacs && $(MAKE) $(MFLAGS) mostlyclean
812 -cd doc/misc && $(MAKE) $(MFLAGS) mostlyclean
813 -cd doc/lispref && $(MAKE) $(MFLAGS) mostlyclean
814 -cd doc/lispintro && $(MAKE) $(MFLAGS) mostlyclean
815 cd leim && $(MAKE) $(MFLAGS) mostlyclean
816
817 ### `clean'
818 ### Delete all files from the current directory that are normally
819 ### created by building the program. Don't delete the files that
820 ### record the configuration. Also preserve files that could be made
821 ### by building, but normally aren't because the distribution comes
822 ### with them.
823 ###
824 ### Delete `.dvi' files here if they are not part of the distribution.
825 clean: FRC
826 -rm -f etc/emacs.tmpdesktop
827 cd src && $(MAKE) $(MFLAGS) clean
828 cd oldXMenu && $(MAKE) $(MFLAGS) clean
829 cd lwlib && $(MAKE) $(MFLAGS) clean
830 cd lib && $(MAKE) $(MFLAGS) clean
831 cd lib-src && $(MAKE) $(MFLAGS) clean
832 cd nt && $(MAKE) $(MFLAGS) clean
833 -cd doc/emacs && $(MAKE) $(MFLAGS) clean
834 -cd doc/misc && $(MAKE) $(MFLAGS) clean
835 -cd doc/lispref && $(MAKE) $(MFLAGS) clean
836 -cd doc/lispintro && $(MAKE) $(MFLAGS) clean
837 cd leim && $(MAKE) $(MFLAGS) clean
838 cd nextstep && $(MAKE) $(MFLAGS) clean
839
840 ### `bootclean'
841 ### Delete all files that need to be remade for a clean bootstrap.
842 top_bootclean=\
843 rm -f config.cache config.log
844 ### `distclean'
845 ### Delete all files from the current directory that are created by
846 ### configuring or building the program. If you have unpacked the
847 ### source and built the program without creating any other files,
848 ### `make distclean' should leave only the files that were in the
849 ### distribution.
850 top_distclean=\
851 ${top_bootclean}; \
852 rm -f config.status config.log~ Makefile stamp-h1 ${SUBDIR_MAKEFILES}
853 distclean: FRC
854 cd src && $(MAKE) $(MFLAGS) distclean
855 cd oldXMenu && $(MAKE) $(MFLAGS) distclean
856 cd lwlib && $(MAKE) $(MFLAGS) distclean
857 cd lib && $(MAKE) $(MFLAGS) distclean
858 cd lib-src && $(MAKE) $(MFLAGS) distclean
859 cd nt && $(MAKE) $(MFLAGS) distclean
860 cd doc/emacs && $(MAKE) $(MFLAGS) distclean
861 cd doc/misc && $(MAKE) $(MFLAGS) distclean
862 cd doc/lispref && $(MAKE) $(MFLAGS) distclean
863 cd doc/lispintro && $(MAKE) $(MFLAGS) distclean
864 cd leim && $(MAKE) $(MFLAGS) distclean
865 cd lisp && $(MAKE) $(MFLAGS) distclean
866 cd nextstep && $(MAKE) $(MFLAGS) distclean
867 for dir in test/automated admin/unidata; do \
868 [ ! -d $$dir ] || (cd $$dir && $(MAKE) $(MFLAGS) distclean); \
869 done
870 ${top_distclean}
871
872 ### `bootstrap-clean'
873 ### Delete everything that can be reconstructed by `make' and that
874 ### needs to be deleted in order to force a bootstrap from a clean state.
875 bootstrap-clean: FRC
876 cd src && $(MAKE) $(MFLAGS) bootstrap-clean
877 cd oldXMenu && $(MAKE) $(MFLAGS) maintainer-clean
878 cd lwlib && $(MAKE) $(MFLAGS) maintainer-clean
879 cd lib && $(MAKE) $(MFLAGS) maintainer-clean
880 cd lib-src && $(MAKE) $(MFLAGS) maintainer-clean
881 cd nt && $(MAKE) $(MFLAGS) maintainer-clean
882 -cd doc/emacs && $(MAKE) $(MFLAGS) maintainer-clean
883 -cd doc/misc && $(MAKE) $(MFLAGS) maintainer-clean
884 -cd doc/lispref && $(MAKE) $(MFLAGS) maintainer-clean
885 -cd doc/lispintro && $(MAKE) $(MFLAGS) maintainer-clean
886 cd leim && $(MAKE) $(MFLAGS) maintainer-clean
887 cd lisp && $(MAKE) $(MFLAGS) bootstrap-clean
888 cd nextstep && $(MAKE) $(MFLAGS) maintainer-clean
889 for dir in test/automated admin/unidata; do \
890 [ ! -d $$dir ] || (cd $$dir && $(MAKE) $(MFLAGS) bootstrap-clean); \
891 done
892 [ ! -f config.log ] || mv -f config.log config.log~
893 ${top_bootclean}
894
895 ### `maintainer-clean'
896 ### Delete everything from the current directory that can be
897 ### reconstructed with this Makefile. This typically includes
898 ### everything deleted by distclean, plus more: C source files
899 ### produced by Bison, tags tables, info files, and so on.
900 ###
901 ### One exception, however: `make maintainer-clean' should not delete
902 ### `configure' even if `configure' can be remade using a rule in the
903 ### Makefile. More generally, `make maintainer-clean' should not delete
904 ### anything that needs to exist in order to run `configure' and then
905 ### begin to build the program.
906 top_maintainer_clean=\
907 ${top_distclean}; \
908 rm -fr autom4te.cache
909 maintainer-clean: bootstrap-clean FRC
910 cd src && $(MAKE) $(MFLAGS) maintainer-clean
911 cd lisp && $(MAKE) $(MFLAGS) maintainer-clean
912 for dir in test/automated admin/unidata; do \
913 [ ! -d $$dir ] || (cd $$dir && $(MAKE) $(MFLAGS) maintainer-clean); \
914 done
915 ${top_maintainer_clean}
916
917 ### This doesn't actually appear in the coding standards, but Karl
918 ### says GCC supports it, and that's where the configuration part of
919 ### the coding standards seem to come from. It's like distclean, but
920 ### it deletes backup and autosave files too.
921 extraclean:
922 for i in ${SUBDIR}; do (cd $$i; $(MAKE) $(MFLAGS) extraclean); done
923 ${top_maintainer_clean}
924 -rm -f config-tmp-*
925 -rm -f *~ \#*
926
927 # The src subdir knows how to do the right thing
928 # even when the build directory and source dir are different.
929 .PHONY: TAGS tags
930 TAGS tags: lib lib-src src
931 cd src; $(MAKE) $(MFLAGS) tags
932
933 check: all
934 @if test ! -d test/automated; then \
935 echo "You do not seem to have the test/ directory."; \
936 echo "Maybe you are using a release tarfile, rather than a repository checkout."; \
937 else \
938 cd test/automated && $(MAKE) $(MFLAGS) check; \
939 fi
940
941 dist:
942 cd ${srcdir}; ./make-dist
943
944 DVIS = lispref-dvi lispintro-dvi emacs-dvi misc-dvi
945 HTMLS = lispref-html lispintro-html emacs-html misc-html
946 INFOS = lispref-info lispintro-info emacs-info misc-info
947 PDFS = lispref-pdf lispintro-pdf emacs-pdf misc-pdf
948 PSS = lispref-ps lispintro-ps emacs-ps misc-ps
949
950 DOCS = $(DVIS) $(HTMLS) $(INFOS) $(PDFS) $(PSS)
951 $(DOCS):
952 t=$@; IFS=-; set $$t; IFS=; cd doc/$$1 && $(MAKE) $(MFLAGS) $$2
953
954 .PHONY: $(DOCS) docs pdf ps
955 .PHONY: info dvi dist check html info-real force-info check-info-dir
956
957 ## TODO add etc/refcards.
958 docs: $(DOCS)
959 dvi: $(DVIS)
960 html: $(HTMLS)
961 info-real: $(INFOS)
962 pdf: $(PDFS)
963 ps: $(PSS)
964
965
966 INSTALL_DVI = install-emacs-dvi install-lispref-dvi \
967 install-lispintro-dvi install-misc-dvi
968 INSTALL_HTML = install-emacs-html install-lispref-html \
969 install-lispintro-html install-misc-html
970 INSTALL_PDF = install-emacs-pdf install-lispref-pdf \
971 install-lispintro-pdf install-misc-pdf
972 INSTALL_PS = install-emacs-ps install-lispref-ps \
973 install-lispintro-ps install-misc-ps
974 INSTALL_DOC = $(INSTALL_DVI) $(INSTALL_HTML) $(INSTALL_PDF) $(INSTALL_PS)
975
976 ## Install non .info forms of the documentation.
977 ## TODO add etc/refcards.
978 $(INSTALL_DOC):
979 t=$@; IFS=-; set $$t; IFS=; cd doc/$$2 && $(MAKE) $(MFLAGS) $$1-$$3
980
981 .PHONY: $(INSTALL_DOC) install-doc
982 .PHONY: install-dvi install-html install-pdf install-ps
983
984 install-doc: $(INSTALL_DOC)
985 install-dvi: $(INSTALL_DVI)
986 install-html: $(INSTALL_HTML)
987 install-pdf: $(INSTALL_PDF)
988 install-ps: $(INSTALL_PS)
989
990
991 UNINSTALL_DVI = uninstall-emacs-dvi uninstall-lispref-dvi \
992 uninstall-lispintro-dvi uninstall-misc-dvi
993 UNINSTALL_HTML = uninstall-emacs-html uninstall-lispref-html \
994 uninstall-lispintro-html uninstall-misc-html
995 UNINSTALL_PDF = uninstall-emacs-pdf uninstall-lispref-pdf \
996 uninstall-lispintro-pdf uninstall-misc-pdf
997 UNINSTALL_PS = uninstall-emacs-ps uninstall-lispref-ps \
998 uninstall-lispintro-ps uninstall-misc-ps
999 UNINSTALL_DOC = $(UNINSTALL_DVI) $(UNINSTALL_HTML) $(UNINSTALL_PDF) $(UNINSTALL_PS)
1000
1001 $(UNINSTALL_DOC):
1002 t=$@; IFS=-; set $$t; IFS=; cd doc/$$2 && $(MAKE) $(MFLAGS) $$1-$$3
1003
1004 .PHONY: $(UNINSTALL_DOC) uninstall-doc
1005 .PHONY: uninstall-dvi uninstall-html uninstall-pdf uninstall-ps
1006
1007 uninstall-doc: $(UNINSTALL_DOC)
1008 uninstall-dvi: $(UNINSTALL_DVI)
1009 uninstall-html: $(UNINSTALL_HTML)
1010 uninstall-pdf: $(UNINSTALL_PDF)
1011 uninstall-ps: $(UNINSTALL_PS)
1012
1013
1014 force-info:
1015 # Note that man/Makefile knows how to put the info files in $(srcdir),
1016 # so we can do ok running make in the build dir.
1017 # This used to have a clause that exited with an error if MAKEINFO = no.
1018 # But it is inappropriate to do so without checking if makeinfo is
1019 # actually needed - it is not if the info files are up-to-date. (Bug#3982)
1020 # Only the doc/*/Makefiles can decide that, so we let those rules run
1021 # and give a standard error if makeinfo is needed but missing.
1022 # While it would be nice to give a more detailed error message, that
1023 # would require changing every rule in doc/ that builds an info file,
1024 # and it's not worth it. This case is only relevant if you download a
1025 # release, then change the .texi files.
1026 info: force-info
1027 @if test "$(HAVE_MAKEINFO)" = "no"; then \
1028 echo "Configured --without-makeinfo, not building manuals" ; \
1029 else \
1030 $(MAKE) $(MFLAGS) info-real ; \
1031 fi
1032
1033 # The info/dir file must be updated by hand when new manuals are added.
1034 # Cannot add an info/dir entry for efaq-w32 since it is not installed
1035 # on all platforms.
1036 check-info-dir: info
1037 cd info ; \
1038 missing= ; \
1039 for file in *; do \
1040 test -f "$${file}" || continue ; \
1041 case $${file} in \
1042 *-[0-9]*|COPYING|dir|efaq-w32*) continue ;; \
1043 esac ; \
1044 file=`echo $${file} | sed 's/\.info//'` ; \
1045 grep -q -F ": ($${file})." dir || missing="$${missing} $${file}" ; \
1046 done ; \
1047 if test -n "$${missing}"; then \
1048 echo "Missing info/dir entries: $${missing}" ; \
1049 exit 1 ; \
1050 fi ; \
1051 echo "info/dir is OK"
1052
1053 #### Bootstrapping.
1054
1055 ### This first cleans the lisp subdirectory, removing all compiled
1056 ### Lisp files. Then re-run make to build all the files anew.
1057
1058 .PHONY: bootstrap
1059
1060 # Bootstrapping does the following:
1061 # * Remove files to start from a bootstrap-clean slate.
1062 # * Run autogen.sh.
1063 # * Rebuild Makefile, to update the build procedure itself.
1064 # * Do the actual build.
1065 bootstrap: bootstrap-clean FRC
1066 cd $(srcdir) && ./autogen.sh
1067 $(MAKE) $(MFLAGS) MAKEFILE_NAME=force-Makefile force-Makefile
1068 $(MAKE) $(MFLAGS) info all
1069
1070 .PHONY: check-declare
1071
1072 check-declare:
1073 @if [ ! -f $(srcdir)/src/emacs ]; then \
1074 echo "You must build Emacs to use this command"; \
1075 exit 1; \
1076 fi
1077 cd leim && $(MAKE) $(MFLAGS) $@
1078 cd lisp && $(MAKE) $(MFLAGS) $@