From: Glenn Morris Date: Tue, 24 May 2011 08:04:27 +0000 (-0700) Subject: * Makefile.in (TAGS, tags, check): Pass MFLAGS to sub-makes. X-Git-Tag: emacs-pretest-24.0.90~104^2~618^2~182 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5a95c00237a294c17452ab66ebae2f34de25c133;p=emacs.git * Makefile.in (TAGS, tags, check): Pass MFLAGS to sub-makes. --- diff --git a/ChangeLog b/ChangeLog index af6589db913..b9dbb2dcfcd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2011-05-24 Glenn Morris + * Makefile.in (TAGS, tags, check): Pass MFLAGS to sub-makes. + * configure.in (OPT_MAKEFILES_IN): Remove. (SUBDIR_MAKEFILES): New variable, passed to AC_CONFIG_FILES. (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: # The src subdir knows how to do the right thing # even when the build directory and source dir are different. TAGS tags: lib lib-src src - cd src; $(MAKE) tags + cd src; $(MAKE) $(MFLAGS) tags check: @if test ! -d test/automated; then \ echo "You do not seem to have the test/ directory."; exit 1; \ else true; fi - cd test/automated && $(MAKE) check + cd test/automated && $(MAKE) $(MFLAGS) check dist: cd ${srcdir}; ./make-dist