2 # Copyright (C) 2007 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
10 ifeq ($(if $(VARIANT),$(BUILD_VARIANT)),$(VARIANT))
11 ifdef Package/$(1)/install
12 ifneq ($(CONFIG_PACKAGE_$(1))$(SDK)$(DEVELOPER),)
13 compile: install-bin-$(1)
15 compile: $(1)-disabled
17 @echo "WARNING: skipping $(1) -- package not selected" >&2
22 install-bin-$(1): $(STAMP_BUILT)
23 rm -rf $(BIN_DIR)/$(1)
24 $(INSTALL_DIR) $(BIN_DIR)/$(1)
25 $(call Package/$(1)/install,$(BIN_DIR)/$(1))
28 rm -rf $(BIN_DIR)/$(1)
31 .PHONY: install-bin-$(1)