diff options
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | Makefile.in | 21 |
2 files changed, 13 insertions, 14 deletions
| @@ -1,3 +1,9 @@ | |||
| 1 | 2011-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 | |||
| 1 | 2011-05-23 Paul Eggert <eggert@cs.ucla.edu> | 7 | 2011-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)'` | |||
| 265 | SUBDIR = lib lib-src src lisp | 265 | SUBDIR = lib lib-src src lisp |
| 266 | 266 | ||
| 267 | # The subdir makefiles created by config.status. | 267 | # The subdir makefiles created by config.status. |
| 268 | SUBDIR_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 | 268 | SUBDIR_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 | |||
| 273 | SUBDIR_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. |
| 390 | Makefile: config.status $(srcdir)/src/config.in \ | 395 | Makefile: 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. |