summaryrefslogtreecommitdiff
path: root/GNUmakefile
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2017-08-12 09:06:55 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2017-08-12 09:09:40 -0700
commit81e22163ebce94d4a3f77e089ee86b8efc6a36f4 (patch)
tree1ad4300afa867ab5bc6e4ac033ef96831b4f18ea /GNUmakefile
parented9404692f75598c74d3ff6a4003f9373a5404f9 (diff)
downloademacs-81e22163ebce94d4a3f77e089ee86b8efc6a36f4.tar.gz
Simplify re and document 'autoconf.sh all'
* GNUmakefile (ALL_IF_GIT): Remove; no longer needed, now that ./autogen.sh defaults to "all". All uses removed. * README: Mention autoconf.sh's effect on Git configuration.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile7
1 files changed, 2 insertions, 5 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 98d31f4afcb..304a7b34f38 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -62,13 +62,10 @@ default $(ORDINARY_GOALS): Makefile
# Execute in sequence, so that multiple user goals don't conflict.
.NOTPARALLEL:
-# 'all' if a .git subdirectory is present, empty otherwise.
-ALL_IF_GIT = $(subst .git,all,$(wildcard .git))
-
configure:
@echo >&2 'There seems to be no "configure" file in this directory.'
- @echo >&2 Running ./autogen.sh $(ALL_IF_GIT) ...
- ./autogen.sh $(ALL_IF_GIT)
+ @echo >&2 Running ./autogen.sh ...
+ ./autogen.sh
@echo >&2 '"configure" file built.'
Makefile: configure