diff options
author | Glenn Morris <rgm@gnu.org> | 2011-05-24 01:04:27 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2011-05-24 01:04:27 -0700 |
commit | 5a95c00237a294c17452ab66ebae2f34de25c133 (patch) | |
tree | 1b9d461a7a329120dc19d2d208b9f4d690a62df9 /Makefile.in | |
parent | e09e38a821d9a2ee64224fa1ad3186a181637565 (diff) | |
download | emacs-5a95c00237a294c17452ab66ebae2f34de25c133.tar.gz |
* Makefile.in (TAGS, tags, check): Pass MFLAGS to sub-makes.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
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 |