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
|
|
|
|
ifneq ($(CONFIG_GCC_VERSION_4_8),)
|
|
|
|
ifeq ($(CONFIG_GCC_USE_SYSTEM_PPL_CLOOG),)
|
|
|
|
BUILD_PPL_CLOOG = y
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
BUILD_ISL = y
|
|
|
|
endif
|
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
|
2010-12-18 18:07:53 +00:00
|
|
|
tools-y += m4 libtool autoconf automake flex bison pkg-config sed mklibs
|
2015-04-20 13:57:43 +00:00
|
|
|
tools-y += sstrip make-ext4fs e2fsprogs mtd-utils mkimage
|
2016-01-20 21:31:34 +00:00
|
|
|
tools-y += firmware-utils patch-image patch quilt yaffs2 padjffs2
|
2015-03-20 11:34:47 +00:00
|
|
|
tools-y += mm-macros missing-macros xz cmake scons bc findutils gengetopt patchelf
|
2016-08-28 18:58:12 +00:00
|
|
|
tools-y += mtools dosfstools
|
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
|
|
|
|
tools-$(BUILD_PPL_CLOOG) += ppl cloog
|
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
|
2010-12-17 02:41:16 +00:00
|
|
|
$(curdir)/bison/compile := $(curdir)/flex/install
|
2015-01-13 07:48:37 +00:00
|
|
|
$(curdir)/flex/compile := $(curdir)/libtool/install
|
2009-05-26 19:11:56 +00:00
|
|
|
$(curdir)/pkg-config/compile := $(curdir)/sed/install
|
2015-01-13 07:48:52 +00:00
|
|
|
$(curdir)/libtool/compile := $(curdir)/sed/install $(curdir)/m4/install $(curdir)/autoconf/install $(curdir)/automake/install $(curdir)/missing-macros/install
|
2009-05-04 17:04:03 +00:00
|
|
|
$(curdir)/squashfs/compile := $(curdir)/lzma-old/install
|
2011-04-03 01:02:00 +00:00
|
|
|
$(curdir)/squashfs4/compile := $(curdir)/xz/install
|
2013-09-27 12:32:18 +00:00
|
|
|
$(curdir)/quilt/compile := $(curdir)/sed/install $(curdir)/autoconf/install $(curdir)/findutils/install
|
2014-12-28 21:55:21 +00:00
|
|
|
$(curdir)/autoconf/compile := $(curdir)/m4/install
|
2015-01-13 07:48:24 +00:00
|
|
|
$(curdir)/automake/compile := $(curdir)/m4/install $(curdir)/autoconf/install $(curdir)/pkg-config/install $(curdir)/xz/install
|
2015-01-13 07:48:37 +00:00
|
|
|
$(curdir)/gmp/compile := $(curdir)/libtool/install
|
2011-02-01 16:21:46 +00:00
|
|
|
$(curdir)/mpc/compile := $(curdir)/mpfr/install $(curdir)/gmp/install
|
2011-01-01 15:18:57 +00:00
|
|
|
$(curdir)/mpfr/compile := $(curdir)/gmp/install
|
|
|
|
$(curdir)/ppl/compile := $(curdir)/gmp/install
|
|
|
|
$(curdir)/cloog/compile := $(curdir)/ppl/install
|
2012-03-02 23:09:01 +00:00
|
|
|
$(curdir)/mtd-utils/compile := $(curdir)/e2fsprogs/install $(curdir)/xz/install
|
2010-04-27 21:57:32 +00:00
|
|
|
$(curdir)/mkimage/compile := $(curdir)/sed/install
|
2015-01-13 07:48:37 +00:00
|
|
|
$(curdir)/mklibs/compile := $(curdir)/libtool/install
|
2010-11-22 11:26:45 +00:00
|
|
|
$(curdir)/qemu/compile := $(curdir)/e2fsprogs/install
|
2015-01-13 07:48:37 +00:00
|
|
|
$(curdir)/upslug2/compile := $(curdir)/libtool/install
|
2015-03-20 11:34:47 +00:00
|
|
|
$(curdir)/mm-macros/compile := $(curdir)/libtool/install
|
2015-01-13 07:48:52 +00:00
|
|
|
$(curdir)/missing-macros/compile := $(curdir)/autoconf/install
|
2015-01-13 07:48:37 +00:00
|
|
|
$(curdir)/e2fsprogs/compile := $(curdir)/libtool/install
|
|
|
|
$(curdir)/libelf/compile := $(curdir)/libtool/install
|
2012-06-29 00:32:43 +00:00
|
|
|
$(curdir)/sdcc/compile := $(curdir)/bison/install
|
2012-10-08 20:15:42 +00:00
|
|
|
$(curdir)/b43-tools/compile := $(curdir)/bison/install
|
2013-07-29 09:38:24 +00:00
|
|
|
$(curdir)/padjffs2/compile := $(curdir)/findutils/install
|
2014-03-08 17:15:45 +00:00
|
|
|
$(curdir)/cloog/compile := $(curdir)/ppl/install
|
2015-11-13 11:35:37 +00:00
|
|
|
$(curdir)/isl/compile := $(curdir)/gmp/install
|
2014-08-27 09:20:28 +00:00
|
|
|
$(curdir)/bc/compile := $(curdir)/bison/install
|
2014-10-26 11:26:54 +00:00
|
|
|
$(curdir)/findutils/compile := $(curdir)/bison/install
|
2015-01-13 07:48:37 +00:00
|
|
|
$(curdir)/gengetopt/compile := $(curdir)/libtool/install
|
2015-02-10 15:48:32 +00:00
|
|
|
$(curdir)/patchelf/compile := $(curdir)/libtool/install
|
2016-05-25 21:47:09 +00:00
|
|
|
ifeq ($(HOST_OS),Darwin)
|
|
|
|
tools-y += libressl
|
|
|
|
$(curdir)/mkimage/compile += $(curdir)/libressl/install
|
|
|
|
$(curdir)/firmware-utils/compile += $(curdir)/libressl/install
|
|
|
|
endif
|
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),)
|
2016-10-06 13:26:16 +00:00
|
|
|
$(foreach tool, $(filter-out xz patch,$(tools-y)), $(eval $(curdir)/$(tool)/compile += $(curdir)/ccache/install))
|
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
|
|
|
|
$(foreach tool, $(tools-y), $(if $(wildcard $(curdir)/$(tool)/patches),$(eval $(curdir)/$(tool)/compile += $(curdir)/patch/install)))
|
|
|
|
|
2016-10-06 11:15:14 +00:00
|
|
|
# make any tool (except xz itself) depend on XZ to ensure that *.tar.xz source archives can be unpacked
|
|
|
|
$(foreach tool, $(filter-out xz,$(tools-y)), $(eval $(curdir)/$(tool)/compile += $(curdir)/xz/install))
|
|
|
|
|
2015-09-11 18:38:02 +00:00
|
|
|
$(foreach tool, $(tools-y), $(eval $(curdir)/$(tool)/compile += $(curdir)/tar/install))
|
|
|
|
tools-y += tar
|
|
|
|
|
2016-01-20 21:31:34 +00:00
|
|
|
$(curdir)/tar/compile := $(curdir)/flock/install
|
|
|
|
tools-y += flock
|
|
|
|
|
2009-04-06 09:56:12 +00:00
|
|
|
$(curdir)/builddirs := $(tools-y) $(tools-dep) $(tools-)
|
|
|
|
$(curdir)/builddirs-default := $(tools-y)
|
|
|
|
|
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
|
2007-07-28 13:44:04 +00:00
|
|
|
$(curdir)//install = $(1)/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))
|
|
|
|
$(eval $(call stampfile,$(curdir),tools,install,,_$(subst $(space),,$(tools_enabled))))
|
2007-07-28 13:44:04 +00:00
|
|
|
$(eval $(call subdir,$(curdir)))
|