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 :=
|
2011-01-27 13:55:00 +00:00
|
|
|
ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN)$(CONFIG_GCC_LLVM),)
|
2011-07-02 10:49:15 +00:00
|
|
|
tools-y += gmp mpfr mpc libelf
|
2010-04-19 15:43:08 +00:00
|
|
|
endif
|
2010-12-18 18:07:53 +00:00
|
|
|
tools-y += m4 libtool autoconf automake flex bison pkg-config sed mklibs
|
2010-11-22 11:26:45 +00:00
|
|
|
tools-y += sstrip ipkg-utils genext2fs e2fsprogs mtd-utils mkimage
|
2011-07-02 08:37:56 +00:00
|
|
|
tools-y += firmware-utils patch-cmdline quilt yaffs2 flock padjffs2
|
2012-05-05 17:37:34 +00:00
|
|
|
tools-y += mm-macros xorg-macros xfce-macros missing-macros xz cmake scons
|
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
|
2010-11-22 13:43:32 +00:00
|
|
|
ifneq ($(CONFIG_TARGET_ar71xx),)
|
2012-01-15 11:43:13 +00:00
|
|
|
tools-y += lzma-old squashfs
|
2010-10-06 22:34:35 +00:00
|
|
|
endif
|
2010-12-12 05:50:47 +00:00
|
|
|
tools-y += lzma squashfs4
|
2006-09-27 14:06:46 +00:00
|
|
|
|
2012-04-09 15:24:47 +00:00
|
|
|
ifneq ($(CONFIG_PACKAGE_firmwarehotplug),)
|
|
|
|
tools-y += sdcc
|
|
|
|
endif
|
|
|
|
|
2009-11-12 13:42:07 +00:00
|
|
|
ifdef CONFIG_GCC_USE_GRAPHITE
|
2010-04-20 16:18:08 +00:00
|
|
|
ifeq ($(CONFIG_GCC_USE_SYSTEM_PPL_CLOOG),)
|
|
|
|
tools-y += ppl cloog
|
|
|
|
$(curdir)/cloog/compile := $(curdir)/ppl/install
|
|
|
|
endif
|
2009-11-02 00:47:21 +00:00
|
|
|
endif
|
|
|
|
|
2007-07-28 02:44:55 +00:00
|
|
|
# builddir dependencies
|
2010-12-17 02:41:16 +00:00
|
|
|
$(curdir)/bison/compile := $(curdir)/flex/install
|
2009-05-26 19:11:56 +00:00
|
|
|
$(curdir)/pkg-config/compile := $(curdir)/sed/install
|
2010-12-18 18:07:53 +00:00
|
|
|
$(curdir)/libtool/compile := $(curdir)/sed/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
|
2010-08-14 22:58:55 +00:00
|
|
|
$(curdir)/quilt/compile := $(curdir)/sed/install $(curdir)/autoconf/install
|
2009-03-01 09:47:05 +00:00
|
|
|
$(curdir)/dtc/compile := $(curdir)/bison/install
|
2010-12-18 18:07:53 +00:00
|
|
|
$(curdir)/autoconf/compile := $(curdir)/m4/install $(curdir)/libtool/install
|
2012-04-21 16:09:04 +00:00
|
|
|
$(curdir)/automake/compile := $(curdir)/m4/install $(curdir)/autoconf/install $(curdir)/pkg-config/install $(curdir)/xz/install
|
2011-01-01 15:18:57 +00:00
|
|
|
$(curdir)/gmp/compile := $(curdir)/automake/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
|
2010-11-22 11:26:45 +00:00
|
|
|
$(curdir)/qemu/compile := $(curdir)/e2fsprogs/install
|
2010-08-09 04:22:34 +00:00
|
|
|
$(curdir)/upslug2/compile := $(curdir)/automake/install
|
2010-12-22 00:02:36 +00:00
|
|
|
$(curdir)/mm-macros/compile := $(curdir)/automake/install
|
2010-12-10 20:25:52 +00:00
|
|
|
$(curdir)/xorg-macros/compile := $(curdir)/automake/install
|
2011-03-09 14:44:23 +00:00
|
|
|
$(curdir)/xfce-macros/compile := $(curdir)/automake/install
|
2010-12-21 23:50:41 +00:00
|
|
|
$(curdir)/missing-macros/compile := $(curdir)/automake/install
|
2011-01-01 15:18:57 +00:00
|
|
|
$(curdir)/e2fsprogs/compile := $(curdir)/automake/install
|
|
|
|
$(curdir)/libelf/compile := $(curdir)/automake/install
|
2012-06-29 00:32:43 +00:00
|
|
|
$(curdir)/sdcc/compile := $(curdir)/bison/install
|
2006-09-27 14:06:46 +00:00
|
|
|
|
2012-01-15 11:43:13 +00:00
|
|
|
ifneq ($(CONFIG_CCACHE),)
|
|
|
|
$(foreach tool, $(tools-y), $(eval $(curdir)/$(tool)/compile += $(curdir)/ccache/install))
|
|
|
|
tools-y += ccache
|
|
|
|
endif
|
|
|
|
|
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 $@
|
|
|
|
|
2009-05-26 19:11:52 +00:00
|
|
|
|
2009-01-25 19:00:43 +00: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-01 17:51:36 +00:00
|
|
|
endif
|
2009-01-25 19:00:43 +00:00
|
|
|
|
2012-03-23 14:10:28 +00:00
|
|
|
$(STAGING_DIR_HOST)/bin/stat: $(STAGING_DIR)/.prepared
|
2012-03-26 10:07:50 +00:00
|
|
|
@rm -f $@
|
2012-03-23 14:10:28 +00: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` $@; \
|
|
|
|
else \
|
|
|
|
echo "GNU stat not found"; \
|
|
|
|
false; \
|
|
|
|
fi
|
|
|
|
|
2009-01-25 19:00:43 +00:00
|
|
|
$(eval $(call PrepareCommand,find,gfind find))
|
|
|
|
$(eval $(call PrepareCommand,md5sum,md5sum $(SCRIPT_DIR)/md5sum))
|
|
|
|
$(eval $(call PrepareCommand,cp,gcp cp))
|
2012-02-29 18:20:34 +00:00
|
|
|
$(eval $(call PrepareCommand,seq,gseq seq))
|
2012-06-10 16:32:15 +00:00
|
|
|
$(eval $(call PrepareCommand,python,python2 python))
|
2009-01-25 19:00:43 +00:00
|
|
|
|
2012-06-10 16:32:15 +00:00
|
|
|
$(curdir)/cmddeps = $(patsubst %,$(STAGING_DIR_HOST)/bin/%,find md5sum cp stat seq python)
|
2009-05-26 19:11:52 +00: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 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
|
|
|
|
2011-01-27 13:55:00 +00: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 13:44:04 +00:00
|
|
|
$(eval $(call subdir,$(curdir)))
|