aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2014-06-09 22:15:49 -0400
committerGlenn Morris2014-06-09 22:15:49 -0400
commit61784fd180c2f8ab056ddd1af7302ce58afded9f (patch)
tree07c702bedecb872e378e0b38d964b0edca56be21
parent40abffe4c6c6b2d4247eeb1d0e9591e7d6f8e7d2 (diff)
downloademacs-61784fd180c2f8ab056ddd1af7302ce58afded9f.tar.gz
emacs-61784fd180c2f8ab056ddd1af7302ce58afded9f.zip
* Makefile.in (AUTOCONF, AUTOMAKE, AUTOHEADER, ACLOCAL): New, set by configure
Use throughout where appropriate.
-rw-r--r--ChangeLog3
-rw-r--r--Makefile.in15
2 files changed, 13 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 16f78145941..f5f18c8c53e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
12014-06-10 Glenn Morris <rgm@gnu.org> 12014-06-10 Glenn Morris <rgm@gnu.org>
2 2
3 * Makefile.in (AUTOCONF, AUTOMAKE, AUTOHEADER, ACLOCAL):
4 New, set by configure. Use throughout where appropriate.
5
3 * Makefile.in (INFO_EXT): Remove and replace by ".info" throughout. 6 * Makefile.in (INFO_EXT): Remove and replace by ".info" throughout.
4 * configure.ac (INFO_EXT, INFO_OPTS): Remove output variables. 7 * configure.ac (INFO_EXT, INFO_OPTS): Remove output variables.
5 8
diff --git a/Makefile.in b/Makefile.in
index 5b53ccd1ea3..c6a10b0bd07 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -76,6 +76,11 @@ QUIET_SUBMAKE = MAKELEVEL=0
76cache_file = @cache_file@ 76cache_file = @cache_file@
77CONFIGURE_FLAGS = --cache-file=$(cache_file) 77CONFIGURE_FLAGS = --cache-file=$(cache_file)
78 78
79AUTOCONF = @AUTOCONF@
80AUTOMAKE = @AUTOMAKE@
81AUTOHEADER = @AUTOHEADER@
82ACLOCAL = @ACLOCAL@
83
79CC=@CC@ 84CC=@CC@
80CFLAGS=@CFLAGS@ 85CFLAGS=@CFLAGS@
81LDFLAGS=@LDFLAGS@ 86LDFLAGS=@LDFLAGS@
@@ -422,17 +427,17 @@ config.status: ${srcdir}/configure ${srcdir}/lisp/version.el
422AUTOCONF_INPUTS = $(srcdir)/configure.ac $(srcdir)/aclocal.m4 427AUTOCONF_INPUTS = $(srcdir)/configure.ac $(srcdir)/aclocal.m4
423 428
424$(srcdir)/configure: $(AUTOCONF_INPUTS) 429$(srcdir)/configure: $(AUTOCONF_INPUTS)
425 cd ${srcdir} && autoconf 430 cd ${srcdir} && ${AUTOCONF}
426 431
427ACLOCAL_PATH = @ACLOCAL_PATH@ 432ACLOCAL_PATH = @ACLOCAL_PATH@
428ACLOCAL_INPUTS = $(srcdir)/configure.ac $(srcdir)/m4/gnulib-comp.m4 433ACLOCAL_INPUTS = $(srcdir)/configure.ac $(srcdir)/m4/gnulib-comp.m4
429$(srcdir)/aclocal.m4: $(ACLOCAL_INPUTS) 434$(srcdir)/aclocal.m4: $(ACLOCAL_INPUTS)
430 cd $(srcdir) && ACLOCAL_PATH='$(ACLOCAL_PATH)' aclocal -I m4 435 cd $(srcdir) && ACLOCAL_PATH='$(ACLOCAL_PATH)' $(ACLOCAL) -I m4
431 436
432AUTOMAKE_INPUTS = $(srcdir)/aclocal.m4 $(srcdir)/lib/Makefile.am \ 437AUTOMAKE_INPUTS = $(srcdir)/aclocal.m4 $(srcdir)/lib/Makefile.am \
433 $(srcdir)/lib/gnulib.mk 438 $(srcdir)/lib/gnulib.mk
434$(srcdir)/lib/Makefile.in: $(AUTOMAKE_INPUTS) 439$(srcdir)/lib/Makefile.in: $(AUTOMAKE_INPUTS)
435 cd $(srcdir) && automake --gnu -a -c lib/Makefile 440 cd $(srcdir) && $(AUTOMAKE) --gnu -a -c lib/Makefile
436 441
437# Regenerate files that this makefile would have made, if this makefile 442# Regenerate files that this makefile would have made, if this makefile
438# had been built by Automake. The name 'am--refresh' is for 443# had been built by Automake. The name 'am--refresh' is for
@@ -445,9 +450,9 @@ $(srcdir)/src/config.in: $(srcdir)/src/stamp-h.in
445 @ # because stamp-h.in has changed (since building stamp-h.in 450 @ # because stamp-h.in has changed (since building stamp-h.in
446 @ # refreshes config.in as well), but if config.in is missing 451 @ # refreshes config.in as well), but if config.in is missing
447 @ # then we really need to do something more. 452 @ # then we really need to do something more.
448 [ -r "$@" ] || ( cd ${srcdir} && autoheader ) 453 [ -r "$@" ] || ( cd ${srcdir} && ${AUTOHEADER} )
449$(srcdir)/src/stamp-h.in: $(AUTOCONF_INPUTS) 454$(srcdir)/src/stamp-h.in: $(AUTOCONF_INPUTS)
450 cd ${srcdir} && autoheader 455 cd ${srcdir} && ${AUTOHEADER}
451 rm -f $(srcdir)/src/stamp-h.in 456 rm -f $(srcdir)/src/stamp-h.in
452 echo timestamp > $(srcdir)/src/stamp-h.in 457 echo timestamp > $(srcdir)/src/stamp-h.in
453 458