X-Git-Url: https://git.archive.openwrt.org/?p=openwrt.git;a=blobdiff_plain;f=target%2FMakefile;h=1b6cbb54ee1014e6f024f8c8fba6fe1e698fd6a9;hp=4853e3fbd2df3a829e4fc8d0213f4a6c182b000f;hb=bfb1bd03544db4b097c6967e4ce177626c6350d6;hpb=b806b008065672cf155ff31b757d36b8f67cac17 diff --git a/target/Makefile b/target/Makefile index 4853e3fbd2..1b6cbb54ee 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: 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 @@ -43,14 +51,4 @@ image_install: image_compile imagebuilder_install: image_install $(MAKE) -C imagebuilder install -%-clean: FORCE - $(MAKE) -C $(patsubst %-clean,%,$@) clean -%-download: FORCE - $(MAKE) -C $(patsubst %-download,%,$@) download -%-prepare: FORCE - $(MAKE) -C $(patsubst %-prepare,%,$@) prepare -%-compile: %-prepare - $(MAKE) -C $(patsubst %-compile,%,$@) compile -%-install: %-compile - $(MAKE) -C $(patsubst %-install,%,$@) install - +$(eval $(call default_subtargets,))