Remove SKU from distclean target.

This commit is contained in:
Oleksandr Ivantsiv 2017-03-02 14:08:25 +02:00
parent 2a2af6a44e
commit e6c2380b6f

View File

@ -38,19 +38,13 @@ ifneq ($(CONFIGURED_PLATFORM),generic)
@exit 1 @exit 1
endif endif
.sku :
ifneq ($(CONFIGURED_PLATFORM),generic)
@echo Build system is not configured, please run make configure
@exit 1
endif
configure : configure :
@mkdir -p target/debs @mkdir -p target/debs
@mkdir -p target/python-wheels @mkdir -p target/python-wheels
@echo $(PLATFORM) > .platform @echo $(PLATFORM) > .platform
distclean : .platform .sku clean distclean : .platform clean
@rm -f .platform .sku @rm -f .platform
############################################################################### ###############################################################################
## Include other rules ## Include other rules
@ -398,4 +392,4 @@ all : .platform $$(addprefix $(TARGET_PATH)/,$$(SONIC_ALL))
.PHONY : $(SONIC_CLEAN_DEBS) $(SONIC_CLEAN_TARGETS) $(SONIC_CLEAN_WHEELS) clean distclean configure .PHONY : $(SONIC_CLEAN_DEBS) $(SONIC_CLEAN_TARGETS) $(SONIC_CLEAN_WHEELS) clean distclean configure
.INTERMEDIATE : $(SONIC_INSTALL_TARGETS) $(SONIC_INSTALL_WHEELS) $(DOCKER_LOAD_TARGETS) docker-start .platform .sku .INTERMEDIATE : $(SONIC_INSTALL_TARGETS) $(SONIC_INSTALL_WHEELS) $(DOCKER_LOAD_TARGETS) docker-start .platform