diff options
author | Jie Zhang <jie.zhang@analog.com> | 2010-10-21 23:50:46 +0000 |
---|---|---|
committer | Jie Zhang <jie.zhang@analog.com> | 2010-10-21 23:50:46 +0000 |
commit | f474844cb7ee9addf50986e165985eb3576e901a (patch) | |
tree | fc31de58de70fb1da6db14c75c3582bdc6ef3113 /gdb/Makefile.in | |
parent | 2b42b063f3a3b0268d5ac52d3fe09dd3b8964924 (diff) | |
download | gdb-f474844cb7ee9addf50986e165985eb3576e901a.zip gdb-f474844cb7ee9addf50986e165985eb3576e901a.tar.gz gdb-f474844cb7ee9addf50986e165985eb3576e901a.tar.bz2 |
* Makefile.in (install): Remove dependency of install-only and
recursively invoke make for install-only.
* data-directory/Makefile.in: Add FLAGS_TO_PASS variable.
(install): Pass FLAGS_TO_PASS when recursively make install-only.
gdbserver/
* Makefile.in: Add FLAGS_TO_PASS variable.
(install): Remove dependency of install-only and recursively
invoke make for install-only.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index b856c3a..f735532 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -970,7 +970,8 @@ gdb.z:gdb.1 # source file and doesn't care about rebuilding or just wants to save the # time it takes for make to check that all is up to date. # install-only is intended to address that need. -install: all install-only +install: all + @$(MAKE) $(FLAGS_TO_PASS) install-only install-only: $(CONFIG_INSTALL) transformed_name=`t='$(program_transform_name)'; \ |