You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
839 B
36 lines
839 B
#
|
|
# makefile to build all needed host-binaries
|
|
#
|
|
# -----------------------------------------------------------------------------
|
|
|
|
$(HOST_DIR):
|
|
$(INSTALL) -d $(HOST_DIR)
|
|
$(INSTALL) -d $(HOST_DEPS_DIR)
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
host-tools: $(BUILD_DIR) $(HOST_DIR) \
|
|
host-pkgconf \
|
|
$(PKG_CONFIG) \
|
|
host-mtd-utils \
|
|
host-u-boot \
|
|
host-zic \
|
|
host-parted \
|
|
host-dosfstools \
|
|
host-mtools \
|
|
host-e2fsprogs \
|
|
host-qrencode \
|
|
host-lua \
|
|
host-luarocks \
|
|
host-ccache
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
PKG_CONFIG_DEPENDENCIES = host-pkgconf
|
|
|
|
$(PKG_CONFIG): $(PKG_CONFIG_DEPENDENCIES) | $(HOST_DIR)
|
|
ln -sf $(HOST_PKG_CONFIG) $(@)
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
PHONY += host-tools
|
|
|