2009-05-15 20:07:21 +08:00
|
|
|
#
|
2011-10-12 18:42:38 +08:00
|
|
|
# Copyright (C) 2006-2011 OpenWrt.org
|
2006-09-27 22:06:46 +08: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 23:00:27 +08:00
|
|
|
curdir:=tools
|
2006-09-27 22:06:46 +08:00
|
|
|
|
2007-07-28 10:44:55 +08:00
|
|
|
# subdirectories to descend into
|
2009-04-24 09:18:49 +08:00
|
|
|
tools-y :=
|
2014-03-09 01:15:45 +08:00
|
|
|
|
2015-03-15 20:03:01 +08:00
|
|
|
ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
|
2014-03-09 01:15:45 +08:00
|
|
|
BUILD_TOOLCHAIN := y
|
2015-11-13 19:35:37 +08:00
|
|
|
ifdef CONFIG_GCC_USE_GRAPHITE
|
2016-12-22 23:23:15 +08:00
|
|
|
BUILD_ISL = y
|
2014-03-09 01:15:45 +08:00
|
|
|
endif
|
2010-04-19 23:43:08 +08:00
|
|
|
endif
|
2016-07-07 16:52:51 +08:00
|
|
|
ifneq ($(CONFIG_SDK)$(CONFIG_PACKAGE_kmod-b43)$(CONFIG_PACKAGE_b43legacy-firmware)$(CONFIG_BRCMSMAC_USE_FW_FROM_WL),)
|
2014-03-09 01:15:45 +08:00
|
|
|
BUILD_B43_TOOLS = y
|
|
|
|
endif
|
|
|
|
|
2021-02-28 02:12:09 +08:00
|
|
|
tools-y += autoconf autoconf-archive automake bc bison cmake cpio dosfstools
|
2020-08-31 19:27:57 +08:00
|
|
|
tools-y += e2fsprogs fakeroot findutils firmware-utils flex gengetopt
|
|
|
|
tools-y += libressl libtool lzma m4 make-ext4fs missing-macros mkimage
|
|
|
|
tools-y += mklibs mm-macros mtd-utils mtools padjffs2 patch-image
|
2021-03-01 03:26:07 +08:00
|
|
|
tools-y += patchelf pkgconf quilt squashfskit4 sstrip xxd zip zlib zstd
|
2014-03-09 01:15:45 +08:00
|
|
|
tools-$(BUILD_B43_TOOLS) += b43-tools
|
2015-11-13 19:35:37 +08:00
|
|
|
tools-$(BUILD_ISL) += isl
|
2021-03-12 09:45:05 +08:00
|
|
|
tools-$(BUILD_TOOLCHAIN) += expat gmp mpc mpfr
|
2019-02-16 00:02:23 +08:00
|
|
|
tools-$(CONFIG_TARGET_apm821xx)$(CONFIG_TARGET_gemini) += genext2fs
|
2020-08-31 19:27:57 +08:00
|
|
|
tools-$(CONFIG_TARGET_ath79) += lzma-old squashfs
|
|
|
|
tools-$(CONFIG_TARGET_mxs) += elftosb sdimage
|
2019-04-02 01:25:40 +08:00
|
|
|
tools-$(CONFIG_TARGET_tegra) += cbootimage cbootimage-configs
|
2020-08-31 19:27:57 +08:00
|
|
|
tools-$(CONFIG_USES_MINOR) += kernel2minor
|
|
|
|
tools-$(CONFIG_USE_SPARSE) += sparse
|
2009-11-02 08:47:21 +08:00
|
|
|
|
2007-07-28 10:44:55 +08:00
|
|
|
# builddir dependencies
|
2017-01-19 00:56:13 +08:00
|
|
|
$(curdir)/autoconf/compile := $(curdir)/m4/compile
|
2019-11-29 03:19:31 +08:00
|
|
|
$(curdir)/automake/compile := $(curdir)/m4/compile $(curdir)/autoconf/compile $(curdir)/pkgconf/compile $(curdir)/xz/compile
|
2017-01-19 00:56:13 +08:00
|
|
|
$(curdir)/b43-tools/compile := $(curdir)/bison/compile
|
2020-11-14 19:52:58 +08:00
|
|
|
$(curdir)/bc/compile := $(curdir)/bison/compile $(curdir)/libtool/compile
|
2020-08-31 19:27:57 +08:00
|
|
|
$(curdir)/bison/compile := $(curdir)/flex/compile
|
|
|
|
$(curdir)/cbootimage/compile += $(curdir)/automake/compile
|
|
|
|
$(curdir)/cmake/compile += $(curdir)/libressl/compile
|
|
|
|
$(curdir)/dosfstools/compile := $(curdir)/autoconf/compile $(curdir)/automake/compile
|
|
|
|
$(curdir)/e2fsprogs/compile := $(curdir)/libtool/compile
|
2021-01-01 21:50:43 +08:00
|
|
|
$(curdir)/fakeroot/compile := $(curdir)/libtool/compile
|
2017-01-19 00:56:13 +08:00
|
|
|
$(curdir)/findutils/compile := $(curdir)/bison/compile
|
2020-08-31 19:27:57 +08:00
|
|
|
$(curdir)/firmware-utils/compile += $(curdir)/libressl/compile $(curdir)/zlib/compile
|
|
|
|
$(curdir)/flex/compile := $(curdir)/libtool/compile
|
2017-01-19 00:56:13 +08:00
|
|
|
$(curdir)/gengetopt/compile := $(curdir)/libtool/compile
|
2020-08-31 19:27:57 +08:00
|
|
|
$(curdir)/gmp/compile := $(curdir)/libtool/compile
|
|
|
|
$(curdir)/isl/compile := $(curdir)/gmp/compile
|
2019-11-29 03:19:31 +08:00
|
|
|
$(curdir)/libressl/compile := $(curdir)/pkgconf/compile
|
2020-08-31 19:27:57 +08:00
|
|
|
$(curdir)/libtool/compile := $(curdir)/m4/compile $(curdir)/autoconf/compile $(curdir)/automake/compile $(curdir)/missing-macros/compile
|
2018-04-16 01:24:02 +08:00
|
|
|
$(curdir)/lzma-old/compile := $(curdir)/zlib/compile
|
|
|
|
$(curdir)/make-ext4fs/compile := $(curdir)/zlib/compile
|
2020-08-31 19:27:57 +08:00
|
|
|
$(curdir)/missing-macros/compile := $(curdir)/autoconf/compile
|
|
|
|
$(curdir)/mkimage/compile += $(curdir)/libressl/compile
|
|
|
|
$(curdir)/mklibs/compile := $(curdir)/libtool/compile
|
|
|
|
$(curdir)/mm-macros/compile := $(curdir)/libtool/compile
|
|
|
|
$(curdir)/mpc/compile := $(curdir)/mpfr/compile $(curdir)/gmp/compile
|
|
|
|
$(curdir)/mpfr/compile := $(curdir)/gmp/compile
|
|
|
|
$(curdir)/mtd-utils/compile := $(curdir)/libtool/compile $(curdir)/e2fsprogs/compile $(curdir)/zlib/compile
|
|
|
|
$(curdir)/padjffs2/compile := $(curdir)/findutils/compile
|
|
|
|
$(curdir)/patchelf/compile := $(curdir)/libtool/compile
|
|
|
|
$(curdir)/quilt/compile := $(curdir)/autoconf/compile $(curdir)/findutils/compile
|
|
|
|
$(curdir)/sdcc/compile := $(curdir)/bison/compile
|
|
|
|
$(curdir)/squashfs/compile := $(curdir)/lzma-old/compile
|
|
|
|
$(curdir)/squashfskit4/compile := $(curdir)/xz/compile $(curdir)/zlib/compile
|
|
|
|
$(curdir)/zlib/compile := $(curdir)/cmake/compile
|
2021-01-21 12:54:58 +08:00
|
|
|
$(curdir)/zstd/compile := $(curdir)/cmake/compile
|
2016-12-25 20:20:38 +08:00
|
|
|
|
2016-08-23 16:58:34 +08:00
|
|
|
ifneq ($(HOST_OS),Linux)
|
2019-03-04 03:58:52 +08:00
|
|
|
$(curdir)/squashfskit4/compile += $(curdir)/coreutils/compile
|
2016-08-23 16:58:34 +08:00
|
|
|
tools-y += coreutils
|
|
|
|
endif
|
2006-09-27 22:06:46 +08:00
|
|
|
|
2015-04-04 03:42:38 +08:00
|
|
|
ifneq ($(CONFIG_CCACHE)$(CONFIG_SDK),)
|
2020-12-23 17:16:17 +08:00
|
|
|
$(foreach tool, $(filter-out xz zstd patch pkgconf libressl cmake,$(tools-y)), $(eval $(curdir)/$(tool)/compile += $(curdir)/ccache/compile))
|
2012-01-15 19:43:13 +08:00
|
|
|
tools-y += ccache
|
2021-01-21 12:54:58 +08:00
|
|
|
$(curdir)/ccache/compile := $(curdir)/zstd/compile
|
2012-01-15 19:43:13 +08:00
|
|
|
endif
|
|
|
|
|
2013-09-27 20:49:34 +08: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-19 00:56:13 +08:00
|
|
|
$(foreach tool, $(tools-y), $(if $(wildcard $(curdir)/$(tool)/patches),$(eval $(curdir)/$(tool)/compile += $(curdir)/patch/compile)))
|
2013-09-27 20:49:34 +08:00
|
|
|
|
2017-01-19 00:56:13 +08:00
|
|
|
$(foreach tool, $(filter-out xz,$(tools-y)), $(eval $(curdir)/$(tool)/compile += $(curdir)/xz/compile))
|
2016-10-06 19:15:14 +08:00
|
|
|
|
2017-01-08 01:25:33 +08: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-12 02:38:02 +08:00
|
|
|
|
2017-01-19 00:56:13 +08:00
|
|
|
$(foreach tool, $(tools-y), $(eval $(curdir)/$(tool)/compile += $(patsubst %,$(curdir)/%/compile,$(tools-core))))
|
2017-01-08 01:25:33 +08:00
|
|
|
tools-y += $(tools-core)
|
|
|
|
|
|
|
|
# make core tools depend on sed and flock
|
2018-09-27 22:08:35 +08:00
|
|
|
$(foreach tool, $(filter-out xz,$(tools-core)), $(eval $(curdir)/$(tool)/compile += $(curdir)/sed/compile))
|
|
|
|
$(curdir)/xz/compile += $(curdir)/flock/compile
|
2017-01-08 01:25:33 +08:00
|
|
|
|
2018-09-27 22:08:35 +08:00
|
|
|
$(curdir)/sed/compile := $(curdir)/flock/compile $(curdir)/xz/compile
|
2017-01-08 01:25:33 +08:00
|
|
|
tools-y += flock sed
|
2016-01-21 05:31:34 +08:00
|
|
|
|
2017-01-19 01:00:00 +08:00
|
|
|
$(curdir)/autoremove := 1
|
2009-04-06 17:56:12 +08:00
|
|
|
$(curdir)/builddirs := $(tools-y) $(tools-dep) $(tools-)
|
|
|
|
$(curdir)/builddirs-default := $(tools-y)
|
|
|
|
|
2016-12-16 23:08:44 +08:00
|
|
|
ifdef CHECK_ALL
|
|
|
|
$(curdir)/builddirs-check:=$($(curdir)/builddirs)
|
|
|
|
$(curdir)/builddirs-download:=$($(curdir)/builddirs)
|
|
|
|
endif
|
|
|
|
|
2010-09-02 01:51:36 +08:00
|
|
|
ifndef DUMP_TARGET_DB
|
2009-05-27 03:11:52 +08:00
|
|
|
define PrepareStaging
|
|
|
|
@for dir in $(1); do ( \
|
2011-04-04 08:54:37 +08:00
|
|
|
$(if $(QUIET),,set -x;) \
|
2007-08-07 08:04:25 +08:00
|
|
|
mkdir -p "$$dir"; \
|
|
|
|
cd "$$dir"; \
|
2020-08-20 14:06:37 +08:00
|
|
|
mkdir -p bin lib stamp usr/include usr/lib; \
|
2007-08-07 08:04:25 +08:00
|
|
|
); done
|
2009-05-27 03:11:52 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
# preparatory work
|
2010-12-11 11:18:31 +08:00
|
|
|
$(STAGING_DIR)/.prepared: $(TMP_DIR)/.build
|
2009-05-27 03:11:52 +08: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 14:49:56 +08:00
|
|
|
mkdir -p $(BUILD_DIR_HOST)/stamp $(STAGING_DIR_HOST)/include/sys
|
2007-08-07 08:04:25 +08:00
|
|
|
$(INSTALL_DATA) $(TOPDIR)/tools/include/*.h $(STAGING_DIR_HOST)/include/
|
2011-07-02 14:49:56 +08:00
|
|
|
$(INSTALL_DATA) $(TOPDIR)/tools/include/sys/*.h $(STAGING_DIR_HOST)/include/sys/
|
2020-03-14 01:56:40 +08:00
|
|
|
ifneq ($(HOST_OS),Linux)
|
|
|
|
mkdir -p $(STAGING_DIR_HOST)/include/asm
|
|
|
|
$(INSTALL_DATA) $(TOPDIR)/tools/include/asm/*.h $(STAGING_DIR_HOST)/include/asm/
|
|
|
|
endif
|
2020-02-19 05:37:22 +08:00
|
|
|
ln -snf lib $(STAGING_DIR_HOST)/lib64
|
2007-08-07 08:04:25 +08:00
|
|
|
touch $@
|
|
|
|
|
2010-09-02 01:51:36 +08:00
|
|
|
endif
|
2009-01-26 03:00:43 +08:00
|
|
|
|
2015-02-06 00:57:35 +08:00
|
|
|
$(curdir)//prepare = $(STAGING_DIR)/.prepared $(STAGING_DIR_HOST)/.prepared
|
|
|
|
$(curdir)//compile = $(STAGING_DIR)/.prepared $(STAGING_DIR_HOST)/.prepared
|
2006-09-27 22:06:46 +08:00
|
|
|
|
2007-07-28 10:44:55 +08:00
|
|
|
# prerequisites for the individual targets
|
2007-07-31 02:22:01 +08:00
|
|
|
$(curdir)/ := .config prereq
|
2017-01-19 00:56:13 +08:00
|
|
|
|
|
|
|
$(curdir)/install: $(curdir)/compile
|
2007-07-28 10:53:54 +08:00
|
|
|
|
2014-03-09 01:15:45 +08:00
|
|
|
tools_enabled = $(foreach tool,$(sort $(tools-y) $(tools-)),$(if $(filter $(tool),$(tools-y)),y,n))
|
2019-10-24 19:31:50 +08:00
|
|
|
$(eval $(call stampfile,$(curdir),tools,compile,,_$(subst $(space),,$(tools_enabled)),$(STAGING_DIR_HOST)))
|
|
|
|
$(eval $(call stampfile,$(curdir),tools,check,$(TMP_DIR)/.build,,$(STAGING_DIR_HOST)))
|
2007-07-28 21:44:04 +08:00
|
|
|
$(eval $(call subdir,$(curdir)))
|