summaryrefslogtreecommitdiff
path: root/package/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 /package/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 'package/Makefile')
-rw-r--r--package/Makefile15
1 files changed, 5 insertions, 10 deletions
diff --git a/package/Makefile b/package/Makefile
index 38b650c..38e39da 100644
--- a/package/Makefile
+++ b/package/Makefile
@@ -40,15 +40,10 @@ $(curdir)/index: FORCE
$(curdir)/flags-install:= -j1
-$(eval $(call stampfile,$(curdir),package,prereq))
-$(eval $(call stampfile,$(curdir),package,cleanup))
-$(eval $(call stampfile,$(curdir),package,compile))
-$(eval $(call stampfile,$(curdir),package,install))
-$(eval $(call stampfile,$(curdir),package,rootfs-prepare))
-
-$($(curdir)/stamp-cleanup): $(TMP_DIR)/.build
-$($(curdir)/stamp-compile): $($(curdir)/stamp-cleanup) $(TMP_DIR)/.build
-$($(curdir)/stamp-install): $($(curdir)/stamp-compile) $(TMP_DIR)/.build
-$($(curdir)/stamp-rootfs-prepare): $($(curdir)/stamp-install) $(TMP_DIR)/.build
+$(eval $(call stampfile,$(curdir),package,prereq,.config))
+$(eval $(call stampfile,$(curdir),package,cleanup,$(TMP_DIR)/.build))
+$(eval $(call stampfile,$(curdir),package,compile,$(TMP_DIR)/.build))
+$(eval $(call stampfile,$(curdir),package,install,$(TMP_DIR)/.build))
+$(eval $(call stampfile,$(curdir),package,rootfs-prepare,$(TMP_DIR)/.build))
$(eval $(call subdir,$(curdir)))