summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2009-08-02 15:01:15 +0200
committerPhil Sutter <phil@nwl.cc>2009-08-02 15:46:20 +0200
commitcda64efca568ec61c064b44f494f58f7a08bd4e7 (patch)
tree37ad392546730d5fc1b856e6fdbc7963d375dc3b
parent02fabc4618d78d960bae068196aa2890bdb9296b (diff)
force entering the config/ subdir in ANY case
This is a general thing: when depending on binaries in subdirs AND dependency checking for those binaries is done from within the subdir Makefile (i.e. the decision about whether to recompile or not), we always have to force entering the subdir or otherwise no check is performed if the upper level dependency ("does the subdir binary exist?") is met.
-rw-r--r--mk/build.mk3
1 files changed, 3 insertions, 0 deletions
diff --git a/mk/build.mk b/mk/build.mk
index c74e16045..399d57216 100644
--- a/mk/build.mk
+++ b/mk/build.mk
@@ -158,6 +158,9 @@ all: menuconfig
# configuration
# ---------------------------------------------------------------------------
+# force entering the subdir, as dependency checking is done there
+.PHONY: $(CONFIG)/conf $(CONFIG)/mconf
+
$(CONFIG)/conf:
@$(MAKE) -C $(CONFIG) conf