aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2017-01-30 20:07:19 +0100
committerKarel Kočí <cynerd@email.cz>2017-01-30 20:07:19 +0100
commitf851f9edefdc5ac3e282e173b4b0d47df19af4ab (patch)
tree6efcb14520e0e65d7113753f7d30444283572118
parent2e506859d991876f4bf6758f738fb19cd13491d5 (diff)
downloadavr-ioe-extensive.tar.gz
avr-ioe-extensive.tar.bz2
avr-ioe-extensive.zip
Make configs depend on Kconfig filesextensive
-rw-r--r--Makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index ae17fef..b71c4bf 100644
--- a/Makefile
+++ b/Makefile
@@ -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)