diff options
author | Gregory Heytings <gregory@heytings.org> | 2022-09-18 21:22:13 +0000 |
---|---|---|
committer | Gregory Heytings <gregory@heytings.org> | 2022-09-18 23:35:57 +0200 |
commit | 7c8a131984ab47349381975dead1712ae25ae2c6 (patch) | |
tree | ff30c0ed6f006503b6c2a740b4f9055ebb5aa666 /GNUmakefile | |
parent | 1bdac41e4d9bbc23b654b90d593a8a3588052868 (diff) | |
download | emacs-7c8a131984ab47349381975dead1712ae25ae2c6.tar.gz emacs-7c8a131984ab47349381975dead1712ae25ae2c6.tar.bz2 emacs-7c8a131984ab47349381975dead1712ae25ae2c6.zip |
Display a help message when building Emacs failed.
* Makefile.in (actual-all): New target, replacing the former 'all'
target.
(advice-on-failure, sanity-check): New targets.
(all): Use the new targets.
(bootstrap-all): New target, identical to 'all' but meant for the
'bootstrap' target in GNUmakefile.
(actual-bootstrap): New target, replacing the former 'bootstrap'
target. Use the 'actual-all' target instead of the 'all' target.
(bootstrap): Use the new targets.
* GNUmakefile (bootstrap): Use the new 'bootstrap-all' target.
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index 8eb61dc0ad5..05edbe099b0 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -115,7 +115,7 @@ endif # 'make bootstrap' in a fresh checkout needn't run 'configure' twice. bootstrap: Makefile - $(MAKE) -f Makefile all + $(MAKE) -f Makefile bootstrap-all .PHONY: bootstrap default $(ORDINARY_GOALS) |