diff options
| author | Glenn Morris | 2014-06-09 22:15:49 -0400 |
|---|---|---|
| committer | Glenn Morris | 2014-06-09 22:15:49 -0400 |
| commit | 61784fd180c2f8ab056ddd1af7302ce58afded9f (patch) | |
| tree | 07c702bedecb872e378e0b38d964b0edca56be21 | |
| parent | 40abffe4c6c6b2d4247eeb1d0e9591e7d6f8e7d2 (diff) | |
| download | emacs-61784fd180c2f8ab056ddd1af7302ce58afded9f.tar.gz emacs-61784fd180c2f8ab056ddd1af7302ce58afded9f.zip | |
* Makefile.in (AUTOCONF, AUTOMAKE, AUTOHEADER, ACLOCAL): New, set by configure
Use throughout where appropriate.
| -rw-r--r-- | ChangeLog | 3 | ||||
| -rw-r--r-- | Makefile.in | 15 |
2 files changed, 13 insertions, 5 deletions
| @@ -1,5 +1,8 @@ | |||
| 1 | 2014-06-10 Glenn Morris <rgm@gnu.org> | 1 | 2014-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 | |||
| 76 | cache_file = @cache_file@ | 76 | cache_file = @cache_file@ |
| 77 | CONFIGURE_FLAGS = --cache-file=$(cache_file) | 77 | CONFIGURE_FLAGS = --cache-file=$(cache_file) |
| 78 | 78 | ||
| 79 | AUTOCONF = @AUTOCONF@ | ||
| 80 | AUTOMAKE = @AUTOMAKE@ | ||
| 81 | AUTOHEADER = @AUTOHEADER@ | ||
| 82 | ACLOCAL = @ACLOCAL@ | ||
| 83 | |||
| 79 | CC=@CC@ | 84 | CC=@CC@ |
| 80 | CFLAGS=@CFLAGS@ | 85 | CFLAGS=@CFLAGS@ |
| 81 | LDFLAGS=@LDFLAGS@ | 86 | LDFLAGS=@LDFLAGS@ |
| @@ -422,17 +427,17 @@ config.status: ${srcdir}/configure ${srcdir}/lisp/version.el | |||
| 422 | AUTOCONF_INPUTS = $(srcdir)/configure.ac $(srcdir)/aclocal.m4 | 427 | AUTOCONF_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 | ||
| 427 | ACLOCAL_PATH = @ACLOCAL_PATH@ | 432 | ACLOCAL_PATH = @ACLOCAL_PATH@ |
| 428 | ACLOCAL_INPUTS = $(srcdir)/configure.ac $(srcdir)/m4/gnulib-comp.m4 | 433 | ACLOCAL_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 | ||
| 432 | AUTOMAKE_INPUTS = $(srcdir)/aclocal.m4 $(srcdir)/lib/Makefile.am \ | 437 | AUTOMAKE_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 | ||