diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-08-30 22:43:25 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-08-30 22:43:25 +0000 |
commit | 761dc0a0aea048ef228635a271ef6d3daf0d0518 (patch) | |
tree | 03331e3489694b00957056e8263d9363bcde76ba /target/Makefile | |
parent | 82914583a98af72e6e117e3ca2feffdf532e3eb5 (diff) | |
download | upstream-761dc0a0aea048ef228635a271ef6d3daf0d0518.tar.gz upstream-761dc0a0aea048ef228635a271ef6d3daf0d0518.tar.bz2 upstream-761dc0a0aea048ef228635a271ef6d3daf0d0518.zip |
fix a dependency bug
SVN-Revision: 8561
Diffstat (limited to 'target/Makefile')
-rw-r--r-- | target/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/target/Makefile b/target/Makefile index b98cd96bf0..3d36d26718 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))) |