diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-06-10 18:30:43 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-06-10 18:30:43 +0000 |
commit | 5b83f5ffe12c513b852235b01de0a723cf39945b (patch) | |
tree | 2d6c5d96e8236ccdff3fed8debbb5118b87d6313 | |
parent | a7afdf1cacc93d2239977dbadd7a16e3653e3a33 (diff) |
- no need to export the included dependencies generated by cc
-rw-r--r-- | Makerules | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -364,10 +364,6 @@ files.dep := $(libc-a-y) $(libc-so-y) $(libc-nonshared-y) \ .depends.dep := $(foreach f,$(.depends.dep),$(dir $(f)).$(notdir $(f))) .depends.dep := $(wildcard $(.depends.dep)) -ifneq ($(strip $(.depends.dep)),) --include $(.depends.dep) -endif - .PHONY: dummy $(PHONY) FORCE: @@ -382,3 +378,11 @@ headers_clean-y: $(headers_clean-y) all check clean realclean distclean test \ config dist menuconfig oldconfig release \ subdirs utils + +ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),) +ifneq ($(strip $(.depends.dep)),) +.NOEXPORT: +-include $(.depends.dep) +endif +endif + |