]> git.eshelyaron.com Git - emacs.git/commitdiff
Pass options from make to configure through a variable.
authorGregory Heytings <gregory@heytings.org>
Wed, 24 Nov 2021 06:58:11 +0000 (07:58 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 24 Nov 2021 06:58:11 +0000 (07:58 +0100)
* GNUmakefile (configure): Use the variable.

* INSTALL.REPO: Document the variable (bug#51965).

GNUmakefile
INSTALL.REPO
Makefile.in

index 5155487de28d140eeff946804b685f24c1727dcd..76fd77ba1b09734c7d1e6ea2d5e9aa09ff6cb7bb 100644 (file)
@@ -104,8 +104,13 @@ configure:
 
 Makefile: configure
        @echo >&2 'There seems to be no Makefile in this directory.'
+ifeq ($(configure),default)
        @echo >&2 'Running ./configure ...'
        ./configure
+else
+       @echo >&2 'Running ./configure '$(configure)'...'
+       ./configure $(configure)
+endif
        @echo >&2 'Makefile built.'
 
 # 'make bootstrap' in a fresh checkout needn't run 'configure' twice.
index da56d7611b253908a6f52adad08611c0f6fb8a68..182c2e95341888da3bb55d63d5a6c2410fb9f0c1 100644 (file)
@@ -8,9 +8,15 @@ directory on your local machine:
 
 To build the repository code, simply run 'make' in the 'emacs'
 directory.  This should work if your files are freshly checked out
-from the repository, and if you have the proper tools installed.  If
-it doesn't work, or if you have special build requirements, the
-following information may be helpful.
+from the repository, and if you have the proper tools installed; the
+default configuration options will be used.  Other configuration
+options can be specified by setting a 'configure' variable, for
+example:
+
+  $ make configure="--prefix=/opt/emacs CFLAGS='-O0 -g3'"
+
+If the above doesn't work, or if you have special build requirements,
+the following information may be helpful.
 
 Building Emacs from the source-code repository requires some tools
 that are not needed when building from a release.  You will need:
@@ -58,7 +64,16 @@ To update loaddefs.el (and similar files), do:
 
 If either of the above partial procedures fails, try 'make bootstrap'.
 If CPU time is not an issue, 'make bootstrap' is a more thorough way
-to rebuild, avoiding spurious problems.
+to rebuild, avoiding spurious problems.  'make bootstrap' rebuilds
+Emacs with the same configuration options as the previous build; it
+can also be used to rebuild Emacs with other configuration options by
+setting a 'configure' variable, for example:
+
+  $ make bootstrap configure="CFLAGS='-O0 -g3'"
+
+To rebuild Emacs with the default configuration options, you can use:
+
+  $ make bootstrap configure=default
 
 Occasionally, there are changes that 'make bootstrap' won't be able to
 handle.  The most thorough cleaning can be achieved by 'git clean -fdx'
index 3c092fa63dfcbcd16c29cc64f85c40d49fdc197d..4b40d8741d4bc98b41c8df7fc7b92503f74c649d 100644 (file)
@@ -1145,14 +1145,23 @@ check-info: info
 
 .PHONY: bootstrap
 
-# Bootstrapping does the following:
+# Without a 'configure' variable, bootstrapping does the following:
 #  * Remove files to start from a bootstrap-clean slate.
 #  * Run autogen.sh.
 #  * Rebuild Makefile, to update the build procedure itself.
 #  * Do the actual build.
-bootstrap: bootstrap-clean
+# With a 'configure' variable, bootstrapping does the following:
+#  * Remove files to start from an extraclean slate.
+#  * Do the actual build, during which the 'configure' variable is
+#    used (see the Makefile goal in GNUmakefile).
+bootstrap:
+ifndef configure
+       $(MAKE) bootstrap-clean
        cd $(srcdir) && ./autogen.sh autoconf
        $(MAKE) MAKEFILE_NAME=force-Makefile force-Makefile
+else
+       $(MAKE) extraclean
+endif
        $(MAKE) all
 
 .PHONY: ChangeLog change-history change-history-commit change-history-nocommit