* Makefile.in (TAGS, tags, check): Pass MFLAGS to sub-makes.
This commit is contained in:
parent
e09e38a821
commit
5a95c00237
2 changed files with 4 additions and 2 deletions
|
@ -1,5 +1,7 @@
|
|||
2011-05-24 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* 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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue