2009-05-15 12:07:21 +00:00
|
|
|
#
|
2011-10-12 10:42:38 +00:00
|
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
2006-09-27 14:06:46 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
# Main makefile for the host tools
|
|
|
|
#
|
2007-07-30 15:00:27 +00:00
|
|
|
curdir:=tools
|
2006-09-27 14:06:46 +00:00
|
|
|
|
2007-07-28 02:44:55 +00:00
|
|
|
# subdirectories to descend into
|
2009-04-24 01:18:49 +00:00
|
|
|
tools-y :=
|
2014-03-08 17:15:45 +00:00
|
|
|
|
2015-03-15 12:03:01 +00:00
|
|
|
ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
|
2014-03-08 17:15:45 +00:00
|
|
|
BUILD_TOOLCHAIN := y
|
2015-11-13 11:35:37 +00:00
|
|
|
ifdef CONFIG_GCC_USE_GRAPHITE
|
2016-12-22 15:23:15 +00:00
|
|
|
BUILD_ISL = y
|
2014-03-08 17:15:45 +00:00
|
|
|
endif
|
2010-04-19 15:43:08 +00:00
|
|
|
endif
|
2016-07-07 08:52:51 +00:00
|
|
|
ifneq ($(CONFIG_SDK)$(CONFIG_PACKAGE_kmod-b43)$(CONFIG_PACKAGE_b43legacy-firmware)$(CONFIG_BRCMSMAC_USE_FW_FROM_WL),)
|
2014-03-08 17:15:45 +00:00
|
|
|
BUILD_B43_TOOLS = y
|
|
|
|
endif
|
|
|
|
|
2015-07-10 19:42:05 +00:00
|
|
|
tools-$(BUILD_TOOLCHAIN) += gmp mpfr mpc libelf expat
|
2017-01-07 17:25:33 +00:00
|
|
|
tools-y += m4 libtool autoconf automake flex bison pkg-config mklibs
|
2015-04-20 13:57:43 +00:00
|
|
|
tools-y += sstrip make-ext4fs e2fsprogs mtd-utils mkimage
|
2017-01-08 18:00:24 +00:00
|
|
|
tools-y += firmware-utils patch-image quilt padjffs2
|
2017-01-07 17:25:33 +00:00
|
|
|
tools-y += mm-macros missing-macros cmake scons bc findutils gengetopt patchelf
|
2016-12-25 12:20:38 +00:00
|
|
|
tools-y += mtools dosfstools libressl
|
2010-11-04 22:10:11 +00:00
|
|
|
tools-$(CONFIG_TARGET_orion_generic) += wrt350nv2-builder upslug2
|
2011-10-12 10:42:38 +00:00
|
|
|
tools-$(CONFIG_powerpc) += upx
|
2011-07-02 06:49:36 +00:00
|
|
|
tools-$(CONFIG_TARGET_x86) += qemu
|
2015-09-21 21:08:08 +00:00
|
|
|
tools-$(CONFIG_TARGET_mxs) += elftosb sdimage
|
2014-03-08 17:15:45 +00:00
|
|
|
tools-$(CONFIG_TARGET_ar71xx) += lzma-old squashfs
|
2016-06-28 11:55:12 +00:00
|
|
|
tools-$(CONFIG_USES_MINOR) += kernel2minor
|
2010-12-12 05:50:47 +00:00
|
|
|
tools-y += lzma squashfs4
|
2014-03-08 17:15:45 +00:00
|
|
|
tools-$(BUILD_B43_TOOLS) += b43-tools
|
2015-11-13 11:35:37 +00:00
|
|
|
tools-$(BUILD_ISL) += isl
|
2014-04-12 21:21:49 +00:00
|
|
|
tools-$(CONFIG_USE_SPARSE) += sparse
|
2016-07-23 17:33:28 +00:00
|
|
|
tools-$(CONFIG_TARGET_apm821xx) += genext2fs
|
2009-11-02 00:47:21 +00:00
|
|
|
|
2007-07-28 02:44:55 +00:00
|
|
|
# builddir dependencies
|
2017-01-18 16:56:13 +00:00
|
|
|
$(curdir)/bison/compile := $(curdir)/flex/compile
|
|
|
|
$(curdir)/flex/compile := $(curdir)/libtool/compile
|
|
|
|
$(curdir)/libtool/compile := $(curdir)/m4/compile $(curdir)/autoconf/compile $(curdir)/automake/compile $(curdir)/missing-macros/compile
|
|
|
|
$(curdir)/squashfs/compile := $(curdir)/lzma-old/compile
|
|
|
|
$(curdir)/squashfs4/compile := $(curdir)/xz/compile
|
|
|
|
$(curdir)/quilt/compile := $(curdir)/autoconf/compile $(curdir)/findutils/compile
|
|
|
|
$(curdir)/autoconf/compile := $(curdir)/m4/compile
|
|
|
|
$(curdir)/automake/compile := $(curdir)/m4/compile $(curdir)/autoconf/compile $(curdir)/pkg-config/compile $(curdir)/xz/compile
|
|
|
|
$(curdir)/gmp/compile := $(curdir)/libtool/compile
|
|
|
|
$(curdir)/mpc/compile := $(curdir)/mpfr/compile $(curdir)/gmp/compile
|
|
|
|
$(curdir)/mpfr/compile := $(curdir)/gmp/compile
|
|
|
|
$(curdir)/mtd-utils/compile := $(curdir)/e2fsprogs/compile
|
|
|
|
$(curdir)/mklibs/compile := $(curdir)/libtool/compile
|
|
|
|
$(curdir)/qemu/compile := $(curdir)/e2fsprogs/compile
|
|
|
|
$(curdir)/upslug2/compile := $(curdir)/libtool/compile
|
|
|
|
$(curdir)/mm-macros/compile := $(curdir)/libtool/compile
|
|
|
|
$(curdir)/missing-macros/compile := $(curdir)/autoconf/compile
|
|
|
|
$(curdir)/e2fsprogs/compile := $(curdir)/libtool/compile
|
|
|
|
$(curdir)/libelf/compile := $(curdir)/libtool/compile
|
|
|
|
$(curdir)/sdcc/compile := $(curdir)/bison/compile
|
|
|
|
$(curdir)/b43-tools/compile := $(curdir)/bison/compile
|
|
|
|
$(curdir)/padjffs2/compile := $(curdir)/findutils/compile
|
|
|
|
$(curdir)/isl/compile := $(curdir)/gmp/compile
|
|
|
|
$(curdir)/bc/compile := $(curdir)/bison/compile
|
|
|
|
$(curdir)/findutils/compile := $(curdir)/bison/compile
|
|
|
|
$(curdir)/gengetopt/compile := $(curdir)/libtool/compile
|
|
|
|
$(curdir)/patchelf/compile := $(curdir)/libtool/compile
|
|
|
|
$(curdir)/dosfstools/compile := $(curdir)/autoconf/compile $(curdir)/automake/compile
|
|
|
|
$(curdir)/libressl/compile := $(curdir)/pkg-config/compile
|
|
|
|
$(curdir)/mkimage/compile += $(curdir)/libressl/compile
|
|
|
|
$(curdir)/firmware-utils/compile += $(curdir)/libressl/compile
|
|
|
|
$(curdir)/cmake/compile += $(curdir)/libressl/compile
|
2016-12-25 12:20:38 +00:00
|
|
|
|
2016-08-23 08:58:34 +00:00
|
|
|
ifneq ($(HOST_OS),Linux)
|
|
|
|
tools-y += coreutils
|
|
|
|
endif
|
2006-09-27 14:06:46 +00:00
|
|
|
|
2015-04-03 19:42:38 +00:00
|
|
|
ifneq ($(CONFIG_CCACHE)$(CONFIG_SDK),)
|
2017-01-18 16:56:13 +00:00
|
|
|
$(foreach tool, $(filter-out xz patch,$(tools-y)), $(eval $(curdir)/$(tool)/compile += $(curdir)/ccache/compile))
|
2012-01-15 11:43:13 +00:00
|
|
|
tools-y += ccache
|
|
|
|
endif
|
|
|
|
|
2013-09-27 12:49:34 +00:00
|
|
|
# in case there is no patch tool on the host we need to make patch tool a
|
|
|
|
# dependency for tools which have patches directory
|
2017-01-18 16:56:13 +00:00
|
|
|
$(foreach tool, $(tools-y), $(if $(wildcard $(curdir)/$(tool)/patches),$(eval $(curdir)/$(tool)/compile += $(curdir)/patch/compile)))
|
2013-09-27 12:49:34 +00:00
|
|
|
|
2017-01-18 16:56:13 +00:00
|
|
|
$(foreach tool, $(filter-out xz,$(tools-y)), $(eval $(curdir)/$(tool)/compile += $(curdir)/xz/compile))
|
2016-10-06 11:15:14 +00:00
|
|
|
|
2017-01-07 17:25:33 +00:00
|
|
|
# make any tool depend on tar, xz and patch to ensure that archives can be unpacked and patched properly
|
|
|
|
tools-core := tar xz patch
|
2015-09-11 18:38:02 +00:00
|
|
|
|
2017-01-18 16:56:13 +00:00
|
|
|
$(foreach tool, $(tools-y), $(eval $(curdir)/$(tool)/compile += $(patsubst %,$(curdir)/%/compile,$(tools-core))))
|
2017-01-07 17:25:33 +00:00
|
|
|
tools-y += $(tools-core)
|
|
|
|
|
|
|
|
# make core tools depend on sed and flock
|
2017-01-18 16:56:13 +00:00
|
|
|
$(foreach tool, $(tools-core), $(eval $(curdir)/$(tool)/compile += $(curdir)/sed/compile))
|
2017-01-07 17:25:33 +00:00
|
|
|
|
2017-01-18 16:56:13 +00:00
|
|
|
$(curdir)/sed/compile := $(curdir)/flock/compile
|
2017-01-07 17:25:33 +00:00
|
|
|
tools-y += flock sed
|
2016-01-20 21:31:34 +00:00
|
|
|
|
2017-01-18 17:00:00 +00:00
|
|
|
$(curdir)/autoremove := 1
|
2009-04-06 09:56:12 +00:00
|
|
|
$(curdir)/builddirs := $(tools-y) $(tools-dep) $(tools-)
|
|
|
|
$(curdir)/builddirs-default := $(tools-y)
|
|
|
|
|
2016-12-16 15:08:44 +00:00
|
|
|
ifdef CHECK_ALL
|
|
|
|
$(curdir)/builddirs-check:=$($(curdir)/builddirs)
|
|
|
|
$(curdir)/builddirs-download:=$($(curdir)/builddirs)
|
|
|
|
endif
|
|
|
|
|
2010-09-01 17:51:36 +00:00
|
|
|
ifndef DUMP_TARGET_DB
|
2009-05-26 19:11:52 +00:00
|
|
|
define PrepareStaging
|
|
|
|
@for dir in $(1); do ( \
|
2011-04-04 00:54:37 +00:00
|
|
|
$(if $(QUIET),,set -x;) \
|
2007-08-07 00:04:25 +00:00
|
|
|
mkdir -p "$$dir"; \
|
|
|
|
cd "$$dir"; \
|
|
|
|
mkdir -p bin lib include stamp; \
|
|
|
|
); done
|
2009-05-26 19:11:52 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
# preparatory work
|
2010-12-11 03:18:31 +00:00
|
|
|
$(STAGING_DIR)/.prepared: $(TMP_DIR)/.build
|
2009-05-26 19:11:52 +00:00
|
|
|
$(call PrepareStaging,$(STAGING_DIR))
|
|
|
|
mkdir -p $(BUILD_DIR)/stamp
|
|
|
|
touch $@
|
|
|
|
|
|
|
|
$(STAGING_DIR_HOST)/.prepared: $(TMP_DIR)/.build
|
|
|
|
$(call PrepareStaging,$(STAGING_DIR_HOST))
|
2011-07-02 06:49:56 +00:00
|
|
|
mkdir -p $(BUILD_DIR_HOST)/stamp $(STAGING_DIR_HOST)/include/sys
|
2007-08-07 00:04:25 +00:00
|
|
|
$(INSTALL_DATA) $(TOPDIR)/tools/include/*.h $(STAGING_DIR_HOST)/include/
|
2011-07-02 06:49:56 +00:00
|
|
|
$(INSTALL_DATA) $(TOPDIR)/tools/include/sys/*.h $(STAGING_DIR_HOST)/include/sys/
|
2011-11-28 19:19:33 +00:00
|
|
|
ln -sf lib $(STAGING_DIR_HOST)/lib64
|
2007-08-07 00:04:25 +00:00
|
|
|
touch $@
|
|
|
|
|
2010-09-01 17:51:36 +00:00
|
|
|
endif
|
2009-01-25 19:00:43 +00:00
|
|
|
|
2015-02-05 16:57:35 +00:00
|
|
|
$(curdir)//prepare = $(STAGING_DIR)/.prepared $(STAGING_DIR_HOST)/.prepared
|
|
|
|
$(curdir)//compile = $(STAGING_DIR)/.prepared $(STAGING_DIR_HOST)/.prepared
|
2006-09-27 14:06:46 +00:00
|
|
|
|
2007-07-28 02:44:55 +00:00
|
|
|
# prerequisites for the individual targets
|
2007-07-30 18:22:01 +00:00
|
|
|
$(curdir)/ := .config prereq
|
2017-01-18 16:56:13 +00:00
|
|
|
|
|
|
|
$(curdir)/install: $(curdir)/compile
|
2007-07-28 02:53:54 +00:00
|
|
|
|
2014-03-08 17:15:45 +00:00
|
|
|
tools_enabled = $(foreach tool,$(sort $(tools-y) $(tools-)),$(if $(filter $(tool),$(tools-y)),y,n))
|
2017-01-18 16:56:13 +00:00
|
|
|
$(eval $(call stampfile,$(curdir),tools,compile,,_$(subst $(space),,$(tools_enabled))))
|
2016-12-14 14:36:39 +00:00
|
|
|
$(eval $(call stampfile,$(curdir),tools,check,$(TMP_DIR)/.build))
|
2007-07-28 13:44:04 +00:00
|
|
|
$(eval $(call subdir,$(curdir)))
|