summaryrefslogtreecommitdiff
path: root/target/Makefile
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2007-08-30 22:43:25 +0000
committerFelix Fietkau <nbd@openwrt.org>2007-08-30 22:43:25 +0000
commit761dc0a0aea048ef228635a271ef6d3daf0d0518 (patch)
tree03331e3489694b00957056e8263d9363bcde76ba /target/Makefile
parent82914583a98af72e6e117e3ca2feffdf532e3eb5 (diff)
downloadmtk-20170518-761dc0a0aea048ef228635a271ef6d3daf0d0518.zip
mtk-20170518-761dc0a0aea048ef228635a271ef6d3daf0d0518.tar.gz
mtk-20170518-761dc0a0aea048ef228635a271ef6d3daf0d0518.tar.bz2
fix a dependency bug
SVN-Revision: 8561
Diffstat (limited to 'target/Makefile')
-rw-r--r--target/Makefile8
1 files changed, 3 insertions, 5 deletions
diff --git a/target/Makefile b/target/Makefile
index b98cd96b..3d36d26 100644
--- a/target/Makefile
+++ b/target/Makefile
@@ -12,12 +12,10 @@ $(curdir)/builddirs-install:=linux $(if $(CONFIG_SDK),sdk) $(if $(CONFIG_IB),ima
$(curdir)/imagebuilder/prepare:=$(curdir)/linux/install
-$(eval $(call stampfile,$(curdir),target,prereq))
-$(eval $(call stampfile,$(curdir),target,compile))
-$(eval $(call stampfile,$(curdir),target,install))
+$(eval $(call stampfile,$(curdir),target,prereq,.config))
+$(eval $(call stampfile,$(curdir),target,compile,$(TMP_DIR)/.build))
+$(eval $(call stampfile,$(curdir),target,install,$(TMP_DIR)/.build))
-$($(curdir)/stamp-prereq): .config
-$($(curdir)/stamp-compile): $(TMP_DIR)/.build
$($(curdir)/stamp-install): $($(curdir)/stamp-compile)
$(eval $(call subdir,$(curdir)))