aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2011-05-24 01:04:27 -0700
committerGlenn Morris2011-05-24 01:04:27 -0700
commit5a95c00237a294c17452ab66ebae2f34de25c133 (patch)
tree1b9d461a7a329120dc19d2d208b9f4d690a62df9
parente09e38a821d9a2ee64224fa1ad3186a181637565 (diff)
downloademacs-5a95c00237a294c17452ab66ebae2f34de25c133.tar.gz
emacs-5a95c00237a294c17452ab66ebae2f34de25c133.zip
* Makefile.in (TAGS, tags, check): Pass MFLAGS to sub-makes.
-rw-r--r--ChangeLog2
-rw-r--r--Makefile.in4
2 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index af6589db913..b9dbb2dcfcd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
12011-05-24 Glenn Morris <rgm@gnu.org> 12011-05-24 Glenn Morris <rgm@gnu.org>
2 2
3 * Makefile.in (TAGS, tags, check): Pass MFLAGS to sub-makes.
4
3 * configure.in (OPT_MAKEFILES_IN): Remove. 5 * configure.in (OPT_MAKEFILES_IN): Remove.
4 (SUBDIR_MAKEFILES): New variable, passed to AC_CONFIG_FILES. 6 (SUBDIR_MAKEFILES): New variable, passed to AC_CONFIG_FILES.
5 (SUBDIR_MAKEFILES_IN): New output variable. 7 (SUBDIR_MAKEFILES_IN): New output variable.
diff --git a/Makefile.in b/Makefile.in
index f0b18ad215e..1138c787930 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -855,13 +855,13 @@ extraclean:
855# The src subdir knows how to do the right thing 855# The src subdir knows how to do the right thing
856# even when the build directory and source dir are different. 856# even when the build directory and source dir are different.
857TAGS tags: lib lib-src src 857TAGS tags: lib lib-src src
858 cd src; $(MAKE) tags 858 cd src; $(MAKE) $(MFLAGS) tags
859 859
860check: 860check:
861 @if test ! -d test/automated; then \ 861 @if test ! -d test/automated; then \
862 echo "You do not seem to have the test/ directory."; exit 1; \ 862 echo "You do not seem to have the test/ directory."; exit 1; \
863 else true; fi 863 else true; fi
864 cd test/automated && $(MAKE) check 864 cd test/automated && $(MAKE) $(MFLAGS) check
865 865
866dist: 866dist:
867 cd ${srcdir}; ./make-dist 867 cd ${srcdir}; ./make-dist