aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2011-05-23 20:40:14 -0700
committerGlenn Morris2011-05-23 20:40:14 -0700
commitfa5d79db2ce8541a7b7342d48146a5ae6cbfdcc8 (patch)
tree88a8d09d0039830d03c74be2d7c2eb46be53f45e
parentf86307039d8a02d5c76a222b9e7440b2f5066f36 (diff)
downloademacs-fa5d79db2ce8541a7b7342d48146a5ae6cbfdcc8.tar.gz
emacs-fa5d79db2ce8541a7b7342d48146a5ae6cbfdcc8.zip
Eliminate some duplication in top-level Makefile.in.
* Makefile.in (SUBDIR_MAKEFILES_IN): New variable. (SUBDIR_MAKEFILES): Derive from $SUBDIR_MAKEFILES_IN. (Makefile): Use $SUBDIR_MAKEFILES_IN.
-rw-r--r--ChangeLog6
-rw-r--r--Makefile.in21
2 files changed, 13 insertions, 14 deletions
diff --git a/ChangeLog b/ChangeLog
index 9f7fa0501c8..cf2da157e8c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
12011-05-24 Glenn Morris <rgm@gnu.org>
2
3 * Makefile.in (SUBDIR_MAKEFILES_IN): New variable.
4 (SUBDIR_MAKEFILES): Derive from $SUBDIR_MAKEFILES_IN.
5 (Makefile): Use $SUBDIR_MAKEFILES_IN.
6
12011-05-23 Paul Eggert <eggert@cs.ucla.edu> 72011-05-23 Paul Eggert <eggert@cs.ucla.edu>
2 8
3 * lib/verify.h: Merge from gnulib. 9 * lib/verify.h: Merge from gnulib.
diff --git a/Makefile.in b/Makefile.in
index 1c0dbb9c27e..e3d5f3ba2bb 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -265,7 +265,12 @@ EMACSFULL = `echo emacs-${version}${EXEEXT} | sed '$(TRANSFORM)'`
265SUBDIR = lib lib-src src lisp 265SUBDIR = lib lib-src src lisp
266 266
267# The subdir makefiles created by config.status. 267# The subdir makefiles created by config.status.
268SUBDIR_MAKEFILES = lib/Makefile lib-src/Makefile doc/emacs/Makefile doc/misc/Makefile doc/lispref/Makefile doc/lispintro/Makefile src/Makefile oldXMenu/Makefile lwlib/Makefile leim/Makefile lisp/Makefile test/automated/Makefile 268SUBDIR_MAKEFILES_IN = lib/Makefile.in lib-src/Makefile.in \
269 doc/emacs/Makefile.in doc/misc/Makefile.in doc/lispref/Makefile.in \
270 doc/lispintro/Makefile.in src/Makefile.in oldXMenu/Makefile.in \
271 lwlib/Makefile.in leim/Makefile.in lisp/Makefile.in test/automated/Makefile.in
272
273SUBDIR_MAKEFILES = $(SUBDIR_MAKEFILES_IN:.in=)
269 274
270# Subdirectories to install, and where they'll go. 275# Subdirectories to install, and where they'll go.
271# lib-src's makefile knows how to install it, so we don't do that here. 276# lib-src's makefile knows how to install it, so we don't do that here.
@@ -388,19 +393,7 @@ blessmail: Makefile src FRC
388# conditions with parallel makes, so let's assume that the time stamp on 393# conditions with parallel makes, so let's assume that the time stamp on
389# ./Makefile is representative of the time stamp on all the other Makefiles. 394# ./Makefile is representative of the time stamp on all the other Makefiles.
390Makefile: config.status $(srcdir)/src/config.in \ 395Makefile: config.status $(srcdir)/src/config.in \
391 $(srcdir)/Makefile.in \ 396 $(srcdir)/Makefile.in $(SUBDIR_MAKEFILES_IN)
392 $(srcdir)/src/Makefile.in \
393 $(srcdir)/lib/Makefile.in \
394 $(srcdir)/lib-src/Makefile.in \
395 $(srcdir)/doc/emacs/Makefile.in \
396 $(srcdir)/doc/misc/Makefile.in \
397 $(srcdir)/doc/lispref/Makefile.in \
398 $(srcdir)/doc/lispintro/Makefile.in \
399 $(srcdir)/oldXMenu/Makefile.in \
400 $(srcdir)/lwlib/Makefile.in \
401 $(srcdir)/leim/Makefile.in \
402 $(srcdir)/lisp/Makefile.in \
403 $(srcdir)/test/automated/Makefile.in
404 ./config.status 397 ./config.status
405 398
406# Don't erase config.status if make is interrupted while refreshing it. 399# Don't erase config.status if make is interrupted while refreshing it.