diff options
| author | Glenn Morris | 2011-05-24 01:04:27 -0700 |
|---|---|---|
| committer | Glenn Morris | 2011-05-24 01:04:27 -0700 |
| commit | 5a95c00237a294c17452ab66ebae2f34de25c133 (patch) | |
| tree | 1b9d461a7a329120dc19d2d208b9f4d690a62df9 | |
| parent | e09e38a821d9a2ee64224fa1ad3186a181637565 (diff) | |
| download | emacs-5a95c00237a294c17452ab66ebae2f34de25c133.tar.gz emacs-5a95c00237a294c17452ab66ebae2f34de25c133.zip | |
* Makefile.in (TAGS, tags, check): Pass MFLAGS to sub-makes.
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rw-r--r-- | Makefile.in | 4 |
2 files changed, 4 insertions, 2 deletions
| @@ -1,5 +1,7 @@ | |||
| 1 | 2011-05-24 Glenn Morris <rgm@gnu.org> | 1 | 2011-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. |
| 857 | TAGS tags: lib lib-src src | 857 | TAGS tags: lib lib-src src |
| 858 | cd src; $(MAKE) tags | 858 | cd src; $(MAKE) $(MFLAGS) tags |
| 859 | 859 | ||
| 860 | check: | 860 | check: |
| 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 | ||
| 866 | dist: | 866 | dist: |
| 867 | cd ${srcdir}; ./make-dist | 867 | cd ${srcdir}; ./make-dist |