doc/lispref/makefile.w32-in (srcs): Add package.texi.
[emacs.git] / INSTALL.BZR
blob710a73c7048a529a269b9354cb9e39a52ad0c9ca
1 Copyright (C) 2002-2011  Free Software Foundation, Inc.
2 See the end of the file for license conditions.
5               Building and Installing Emacs from Bazaar
7 If this is the first time you go through it, you'll need to configure
8 before bootstrapping:
10   $ ./configure
12 (Normally there is no need to run `autoconf' etc.  If you do need it,
13 the relevant command is `autoreconf -I m4'.  Be aware that this will
14 likely lead to conflicts next time you update from Bazaar.)
16 Some of the files that are included in the Emacs tarball, such as
17 byte-compiled Lisp files, are not stored in Bazaar.  Therefore, to
18 build from Bazaar you must run "make bootstrap" instead of just "make":
20   $ bzr pull
21   $ make bootstrap
23 Normally, it is not necessary to use "make bootstrap" after every
24 update from Bazaar.  "make" should work in 90% of the cases and be
25 much quicker.
27   $ make
29 (If you want to install the Emacs binary, type "make install" instead
30 of "make" in the last command.)
32 Occasionally the file "lisp/loaddefs.el" (and similar automatically
33 generated files, such as esh-groups.el, and *-loaddefs.el in some
34 subdirectories of lisp/, e.g. mh-e/ and calendar/) will need to be
35 updated to reflect new autoloaded functions.  If you see errors (rather
36 than warnings) about undefined lisp functions during compilation, that
37 may be the reason.  Finally, sometimes there can be build failures
38 related to *loaddefs.el (e.g. "required feature `esh-groups' was not
39 provided").  In that case, follow the instructions below.
41 To update loaddefs.el (and similar files), do:
43   $ cd lisp
44   $ make autoloads
46 If either of the above partial procedures fails, try "make bootstrap".
47 If CPU time is not an issue, the most thorough way to rebuild, and
48 avoid any spurious problems, is always to use this method.
50 Users of non-Posix systems (MS-Windows etc.) should run the
51 platform-specific configuration scripts (nt/configure.bat, config.bat,
52 etc.) before "make bootstrap" or "make"; the rest of the procedure is
53 applicable to those systems as well.
55 Because the Bazaar version of Emacs is a work in progress, it will
56 sometimes fail to build.  Please wait a day or so (and check the bug
57 and development mailing list archives) before reporting such problems.
58 In most cases, the problem is known about and is just waiting for
59 someone to fix it.
63 This file is part of GNU Emacs.
65 GNU Emacs is free software: you can redistribute it and/or modify
66 it under the terms of the GNU General Public License as published by
67 the Free Software Foundation, either version 3 of the License, or
68 (at your option) any later version.
70 GNU Emacs is distributed in the hope that it will be useful,
71 but WITHOUT ANY WARRANTY; without even the implied warranty of
72 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
73 GNU General Public License for more details.
75 You should have received a copy of the GNU General Public License
76 along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.