X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=target%2FMakefile;h=1b6cbb54ee1014e6f024f8c8fba6fe1e698fd6a9;hb=4e60cfe51f97990eb1244e2813d12d514a761d7c;hp=4853e3fbd2df3a829e4fc8d0213f4a6c182b000f;hpb=7a6a6464971c69fa1026aeaf8fad5c79250230e9;p=lede-git%2F.git 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,))