diff options
author | Karel Kočí <cynerd@email.cz> | 2017-01-30 20:07:19 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2017-01-30 20:07:19 +0100 |
commit | f851f9edefdc5ac3e282e173b4b0d47df19af4ab (patch) | |
tree | 6efcb14520e0e65d7113753f7d30444283572118 | |
parent | 2e506859d991876f4bf6758f738fb19cd13491d5 (diff) | |
download | avr-ioe-f851f9edefdc5ac3e282e173b4b0d47df19af4ab.tar.gz avr-ioe-f851f9edefdc5ac3e282e173b4b0d47df19af4ab.tar.bz2 avr-ioe-f851f9edefdc5ac3e282e173b4b0d47df19af4ab.zip |
Make configs depend on Kconfig filesextensive
-rw-r--r-- | Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -134,18 +134,20 @@ callconfig = $(Q)\ # have configuration in parent project, We have to move it every time we are # generating it. Also upper projects can't use Kconfig for its self configuration. +-include .config.cmd + .PHONY: oldconfig -oldconfig: +oldconfig: $(deps_config) $(call callconfig, oldconfig) .PHONY: config -config: +config: $(deps_config) $(call callconfig, config) .PHONY: menuconfig -menuconfig: +menuconfig: $(deps_config) $(call callconfig, menuconfig) .PHONY: allyesconfig -allyesconfig: +allyesconfig: $(deps_config) $(call callconfig, allyesconfig) |