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 :=
|
2011-01-27 21:55:00 +08:00
|
|
|
ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN)$(CONFIG_GCC_LLVM),)
|
2011-07-02 18:49:15 +08:00
|
|
|
tools-y += gmp mpfr mpc libelf
|
2010-04-19 23:43:08 +08:00
|
|
|
endif
|
2010-12-19 02:07:53 +08:00
|
|
|
tools-y += m4 libtool autoconf automake flex bison pkg-config sed mklibs
|
2010-11-22 19:26:45 +08:00
|
|
|
tools-y += sstrip ipkg-utils genext2fs e2fsprogs mtd-utils mkimage
|
2013-03-08 01:32:29 +08:00
|
|
|
tools-y += firmware-utils patch-image patch quilt yaffs2 flock padjffs2
|
2013-07-08 16:45:03 +08:00
|
|
|
tools-y += mm-macros xorg-macros xfce-macros missing-macros xz cmake scons bc
|
2013-07-09 20:52:08 +08:00
|
|
|
tools-y += findutils
|
2010-11-05 06:10:11 +08:00
|
|
|
tools-$(CONFIG_TARGET_orion_generic) += wrt350nv2-builder upslug2
|
2011-10-12 18:42:38 +08:00
|
|
|
tools-$(CONFIG_powerpc) += upx
|
2011-07-02 14:49:36 +08:00
|
|
|
tools-$(CONFIG_TARGET_x86) += qemu
|
2013-10-15 03:01:23 +08:00
|
|
|
tools-$(CONFIG_TARGET_mxs) += elftosb
|
2012-07-25 04:39:00 +08:00
|
|
|
tools-$(CONFIG_TARGET_brcm2708) += mtools dosfstools
|
2010-11-22 21:43:32 +08:00
|
|
|
ifneq ($(CONFIG_TARGET_ar71xx),)
|
2012-01-15 19:43:13 +08:00
|
|
|
tools-y += lzma-old squashfs
|
2010-10-07 06:34:35 +08:00
|
|
|
endif
|
2010-12-12 13:50:47 +08:00
|
|
|
tools-y += lzma squashfs4
|
2012-10-09 04:18:27 +08:00
|
|
|
ifneq ($(CONFIG_PACKAGE_kmod-b43)$(CONFIG_PACKAGE_kmod-b43legacy)$(CONFIG_BRCMSMAC_USE_FW_FROM_WL),)
|
2012-10-09 04:15:42 +08:00
|
|
|
tools-y += b43-tools
|
|
|
|
endif
|
2006-09-27 22:06:46 +08:00
|
|
|
|
2009-11-12 21:42:07 +08:00
|
|
|
ifdef CONFIG_GCC_USE_GRAPHITE
|
2010-04-21 00:18:08 +08:00
|
|
|
ifeq ($(CONFIG_GCC_USE_SYSTEM_PPL_CLOOG),)
|
|
|
|
tools-y += ppl cloog
|
|
|
|
$(curdir)/cloog/compile := $(curdir)/ppl/install
|
|
|
|
endif
|
2009-11-02 08:47:21 +08:00
|
|
|
endif
|
|
|
|
|
2007-07-28 10:44:55 +08:00
|
|
|
# builddir dependencies
|
2010-12-17 10:41:16 +08:00
|
|
|
$(curdir)/bison/compile := $(curdir)/flex/install
|
2012-09-23 17:03:53 +08:00
|
|
|
$(curdir)/flex/compile := $(curdir)/m4/install
|
2009-05-27 03:11:56 +08:00
|
|
|
$(curdir)/pkg-config/compile := $(curdir)/sed/install
|
2010-12-19 02:07:53 +08:00
|
|
|
$(curdir)/libtool/compile := $(curdir)/sed/install
|
2009-05-05 01:04:03 +08:00
|
|
|
$(curdir)/squashfs/compile := $(curdir)/lzma-old/install
|
2011-04-03 09:02:00 +08:00
|
|
|
$(curdir)/squashfs4/compile := $(curdir)/xz/install
|
2013-09-27 20:32:18 +08:00
|
|
|
$(curdir)/quilt/compile := $(curdir)/sed/install $(curdir)/autoconf/install $(curdir)/findutils/install
|
2009-03-01 17:47:05 +08:00
|
|
|
$(curdir)/dtc/compile := $(curdir)/bison/install
|
2010-12-19 02:07:53 +08:00
|
|
|
$(curdir)/autoconf/compile := $(curdir)/m4/install $(curdir)/libtool/install
|
2012-04-22 00:09:04 +08:00
|
|
|
$(curdir)/automake/compile := $(curdir)/m4/install $(curdir)/autoconf/install $(curdir)/pkg-config/install $(curdir)/xz/install
|
2011-01-01 23:18:57 +08:00
|
|
|
$(curdir)/gmp/compile := $(curdir)/automake/install
|
2011-02-02 00:21:46 +08:00
|
|
|
$(curdir)/mpc/compile := $(curdir)/mpfr/install $(curdir)/gmp/install
|
2011-01-01 23:18:57 +08:00
|
|
|
$(curdir)/mpfr/compile := $(curdir)/gmp/install
|
|
|
|
$(curdir)/ppl/compile := $(curdir)/gmp/install
|
|
|
|
$(curdir)/cloog/compile := $(curdir)/ppl/install
|
2012-03-03 07:09:01 +08:00
|
|
|
$(curdir)/mtd-utils/compile := $(curdir)/e2fsprogs/install $(curdir)/xz/install
|
2010-04-28 05:57:32 +08:00
|
|
|
$(curdir)/mkimage/compile := $(curdir)/sed/install
|
2013-02-27 05:49:11 +08:00
|
|
|
$(curdir)/mklibs/compile := $(curdir)/automake/install
|
2010-11-22 19:26:45 +08:00
|
|
|
$(curdir)/qemu/compile := $(curdir)/e2fsprogs/install
|
2010-08-09 12:22:34 +08:00
|
|
|
$(curdir)/upslug2/compile := $(curdir)/automake/install
|
2010-12-22 08:02:36 +08:00
|
|
|
$(curdir)/mm-macros/compile := $(curdir)/automake/install
|
2010-12-11 04:25:52 +08:00
|
|
|
$(curdir)/xorg-macros/compile := $(curdir)/automake/install
|
2011-03-09 22:44:23 +08:00
|
|
|
$(curdir)/xfce-macros/compile := $(curdir)/automake/install
|
2010-12-22 07:50:41 +08:00
|
|
|
$(curdir)/missing-macros/compile := $(curdir)/automake/install
|
2011-01-01 23:18:57 +08:00
|
|
|
$(curdir)/e2fsprogs/compile := $(curdir)/automake/install
|
|
|
|
$(curdir)/libelf/compile := $(curdir)/automake/install
|
2012-06-29 08:32:43 +08:00
|
|
|
$(curdir)/sdcc/compile := $(curdir)/bison/install
|
2012-10-09 04:15:42 +08:00
|
|
|
$(curdir)/b43-tools/compile := $(curdir)/bison/install
|
2013-07-29 17:38:24 +08:00
|
|
|
$(curdir)/padjffs2/compile := $(curdir)/findutils/install
|
2006-09-27 22:06:46 +08:00
|
|
|
|
2012-01-15 19:43:13 +08:00
|
|
|
ifneq ($(CONFIG_CCACHE),)
|
|
|
|
$(foreach tool, $(tools-y), $(eval $(curdir)/$(tool)/compile += $(curdir)/ccache/install))
|
|
|
|
tools-y += ccache
|
|
|
|
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
|
|
|
|
$(foreach tool, $(tools-y), $(if $(wildcard $(curdir)/$(tool)/patches),$(eval $(curdir)/$(tool)/compile += $(curdir)/patch/install)))
|
|
|
|
|
2009-04-06 17:56:12 +08:00
|
|
|
$(curdir)/builddirs := $(tools-y) $(tools-dep) $(tools-)
|
|
|
|
$(curdir)/builddirs-default := $(tools-y)
|
|
|
|
|
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"; \
|
|
|
|
mkdir -p bin lib include stamp; \
|
|
|
|
); 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/
|
2011-11-29 03:19:33 +08:00
|
|
|
ln -sf lib $(STAGING_DIR_HOST)/lib64
|
2007-08-07 08:04:25 +08:00
|
|
|
touch $@
|
|
|
|
|
2009-05-27 03:11:52 +08:00
|
|
|
|
2009-01-26 03:00:43 +08:00
|
|
|
define PrepareCommand
|
|
|
|
$(STAGING_DIR_HOST)/bin/$(1): $(STAGING_DIR)/.prepared
|
|
|
|
@mkdir -p "$$(dir $$@)"; rm -f "$$@"
|
|
|
|
@export FILE="$$$$(which $(2) 2>/dev/null | grep -v 'not found' | head -n1)"; [ -n "$$$$FILE" ] || { \
|
|
|
|
echo "Command $(1) not found."; false; \
|
|
|
|
}; ln -s "$$$$FILE" "$$@"
|
|
|
|
|
|
|
|
endef
|
2010-09-02 01:51:36 +08:00
|
|
|
endif
|
2009-01-26 03:00:43 +08:00
|
|
|
|
2012-03-23 22:10:28 +08:00
|
|
|
$(STAGING_DIR_HOST)/bin/stat: $(STAGING_DIR)/.prepared
|
2012-03-26 18:07:50 +08:00
|
|
|
@rm -f $@
|
2012-03-23 22:10:28 +08:00
|
|
|
@if stat --version > /dev/null 2>&1; then \
|
|
|
|
ln -s `which stat` $@; \
|
|
|
|
elif gstat --version > /dev/null 2>&1; then \
|
|
|
|
ln -s `which gstat` $@; \
|
2013-03-08 01:32:29 +08:00
|
|
|
elif gnustat --version > /dev/null 2>&1; then \
|
|
|
|
ln -s `which gnustat` $@; \
|
2012-03-23 22:10:28 +08:00
|
|
|
else \
|
|
|
|
echo "GNU stat not found"; \
|
|
|
|
false; \
|
|
|
|
fi
|
|
|
|
|
2012-07-17 19:28:30 +08:00
|
|
|
$(eval $(call PrepareCommand,md5sum,gmd5sum md5sum $(SCRIPT_DIR)/md5sum))
|
2009-01-26 03:00:43 +08:00
|
|
|
$(eval $(call PrepareCommand,cp,gcp cp))
|
2012-03-01 02:20:34 +08:00
|
|
|
$(eval $(call PrepareCommand,seq,gseq seq))
|
2013-03-08 01:32:29 +08:00
|
|
|
$(eval $(call PrepareCommand,python,python2 python2.7 python))
|
2012-12-17 23:11:34 +08:00
|
|
|
$(eval $(call PrepareCommand,awk,gawk awk))
|
2013-03-08 01:32:29 +08:00
|
|
|
$(eval $(call PrepareCommand,getopt,gnugetopt /usr/local/bin/getopt getopt))
|
|
|
|
$(eval $(call PrepareCommand,grep,ggrep grep))
|
|
|
|
$(eval $(call PrepareCommand,tar,gtar tar))
|
|
|
|
$(eval $(call PrepareCommand,diff,gdiff diff))
|
2009-01-26 03:00:43 +08:00
|
|
|
|
2013-07-09 21:36:36 +08:00
|
|
|
$(curdir)/cmddeps = $(patsubst %,$(STAGING_DIR_HOST)/bin/%,md5sum cp stat seq python awk getopt grep tar diff)
|
2009-05-27 03:11:52 +08:00
|
|
|
$(curdir)//prepare = $(STAGING_DIR)/.prepared $(STAGING_DIR_HOST)/.prepared $($(curdir)/cmddeps)
|
|
|
|
$(curdir)//compile = $(STAGING_DIR)/.prepared $(STAGING_DIR_HOST)/.prepared $($(curdir)/cmddeps)
|
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
|
2007-07-28 21:44:04 +08:00
|
|
|
$(curdir)//install = $(1)/compile
|
2007-07-28 10:53:54 +08:00
|
|
|
|
2011-01-27 21:55:00 +08:00
|
|
|
$(eval $(call stampfile,$(curdir),tools,install,,CONFIG_CCACHE CONFIG_powerpc CONFIG_GCC_VERSION_4_5 CONFIG_GCC_USE_GRAPHITE CONFIG_TARGET_orion_generic))
|
2007-07-28 21:44:04 +08:00
|
|
|
$(eval $(call subdir,$(curdir)))
|