summaryrefslogtreecommitdiff
path: root/target/Makefile
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2007-01-14 23:37:40 +0000
committerFelix Fietkau <nbd@openwrt.org>2007-01-14 23:37:40 +0000
commit351d0d4b07fe39e6fad5d14fc18f176298a96143 (patch)
tree5a865e0b5fe3ac25b2e12aac47700b789d119b48 /target/Makefile
parentfd9477a18f6cea564acd9c6801d844411b8bd9e8 (diff)
downloadmtk-20170518-351d0d4b07fe39e6fad5d14fc18f176298a96143.zip
mtk-20170518-351d0d4b07fe39e6fad5d14fc18f176298a96143.tar.gz
mtk-20170518-351d0d4b07fe39e6fad5d14fc18f176298a96143.tar.bz2
Fix config checks for Image Builder and SDK - only build them when requested. Clear all packages from bin/packages at the beginning of package/compile when the Image Builder is selected, because the Image Builder can't handle multiple versions of the same package.
SVN-Revision: 6102
Diffstat (limited to 'target/Makefile')
-rw-r--r--target/Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/target/Makefile b/target/Makefile
index 4853e3f..3f97b9a 100644
--- a/target/Makefile
+++ b/target/Makefile
@@ -20,7 +20,15 @@ IMAGE_DIR:=linux/$(BOARD)-$(KERNEL)/image
download: $(patsubst %,%-download,$(TARGETS-y))
prepare: linux-prepare
compile: linux-compile image_compile
-install: image_clean linux-install sdk_install image_install imagebuilder_install
+install: image_clean linux-install image_install
+
+ifeq ($(CONFIG_SDK),y)
+install: sdk_install
+endif
+ifeq ($(CONFIG_IB),y)
+install: imagebuilder_install
+endif
+
clean: linux-clean sdk-clean imagebuilder-clean image_clean
prereq: FORCE