2009-05-15 15:07:21 +03:00
|
|
|
#
|
2010-08-15 01:58:55 +03:00
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
2006-09-27 17:06:46 +03: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 18:00:27 +03:00
|
|
|
curdir:=tools
|
2006-09-27 17:06:46 +03:00
|
|
|
|
2007-07-28 05:44:55 +03:00
|
|
|
# subdirectories to descend into
|
2009-04-24 04:18:49 +03:00
|
|
|
tools-y :=
|
2011-01-27 15:55:00 +02:00
|
|
|
ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN)$(CONFIG_GCC_LLVM),)
|
2011-07-02 13:49:15 +03:00
|
|
|
tools-y += gmp mpfr mpc libelf
|
2010-04-19 18:43:08 +03:00
|
|
|
endif
|
2010-12-18 20:07:53 +02:00
|
|
|
tools-y += m4 libtool autoconf automake flex bison pkg-config sed mklibs
|
2010-11-22 13:26:45 +02:00
|
|
|
tools-y += sstrip ipkg-utils genext2fs e2fsprogs mtd-utils mkimage
|
2011-07-02 11:37:56 +03:00
|
|
|
tools-y += firmware-utils patch-cmdline quilt yaffs2 flock padjffs2
|
2011-03-09 16:44:23 +02:00
|
|
|
tools-y += mm-macros xorg-macros xfce-macros missing-macros xz cmake
|
2010-11-05 00:10:11 +02:00
|
|
|
tools-$(CONFIG_TARGET_orion_generic) += wrt350nv2-builder upslug2
|
2011-07-02 09:49:36 +03:00
|
|
|
tools-$(CONFIG_TARGET_x86) += qemu
|
2010-11-22 15:43:32 +02:00
|
|
|
ifneq ($(CONFIG_TARGET_ar71xx),)
|
2010-12-12 07:50:47 +02:00
|
|
|
tools-y += lzma-old squashfs
|
2010-10-07 01:34:35 +03:00
|
|
|
endif
|
2010-12-12 07:50:47 +02:00
|
|
|
tools-y += lzma squashfs4
|
2009-04-06 12:56:12 +03:00
|
|
|
tools-$(CONFIG_CCACHE) += ccache
|
2006-09-27 17:06:46 +03:00
|
|
|
|
2009-11-12 15:42:07 +02:00
|
|
|
ifdef CONFIG_GCC_USE_GRAPHITE
|
2010-04-20 19:18:08 +03:00
|
|
|
ifeq ($(CONFIG_GCC_USE_SYSTEM_PPL_CLOOG),)
|
|
|
|
tools-y += ppl cloog
|
|
|
|
$(curdir)/cloog/compile := $(curdir)/ppl/install
|
|
|
|
endif
|
2009-11-02 02:47:21 +02:00
|
|
|
endif
|
|
|
|
|
2007-07-28 05:44:55 +03:00
|
|
|
# builddir dependencies
|
2010-12-17 04:41:16 +02:00
|
|
|
$(curdir)/bison/compile := $(curdir)/flex/install
|
2009-05-26 22:11:56 +03:00
|
|
|
$(curdir)/pkg-config/compile := $(curdir)/sed/install
|
2010-12-18 20:07:53 +02:00
|
|
|
$(curdir)/libtool/compile := $(curdir)/sed/install
|
2009-05-04 20:04:03 +03:00
|
|
|
$(curdir)/squashfs/compile := $(curdir)/lzma-old/install
|
2011-04-03 04:02:00 +03:00
|
|
|
$(curdir)/squashfs4/compile := $(curdir)/xz/install
|
2010-08-15 01:58:55 +03:00
|
|
|
$(curdir)/quilt/compile := $(curdir)/sed/install $(curdir)/autoconf/install
|
2009-03-01 11:47:05 +02:00
|
|
|
$(curdir)/dtc/compile := $(curdir)/bison/install
|
2010-12-18 20:07:53 +02:00
|
|
|
$(curdir)/autoconf/compile := $(curdir)/m4/install $(curdir)/libtool/install
|
2010-12-13 23:02:31 +02:00
|
|
|
$(curdir)/automake/compile := $(curdir)/m4/install $(curdir)/autoconf/install $(curdir)/pkg-config/install
|
2011-01-01 17:18:57 +02:00
|
|
|
$(curdir)/gmp/compile := $(curdir)/automake/install
|
2011-02-01 18:21:46 +02:00
|
|
|
$(curdir)/mpc/compile := $(curdir)/mpfr/install $(curdir)/gmp/install
|
2011-01-01 17:18:57 +02:00
|
|
|
$(curdir)/mpfr/compile := $(curdir)/gmp/install
|
|
|
|
$(curdir)/ppl/compile := $(curdir)/gmp/install
|
|
|
|
$(curdir)/cloog/compile := $(curdir)/ppl/install
|
2010-11-22 13:26:45 +02:00
|
|
|
$(curdir)/mtd-utils/compile := $(curdir)/e2fsprogs/install
|
2010-04-28 00:57:32 +03:00
|
|
|
$(curdir)/mkimage/compile := $(curdir)/sed/install
|
2010-11-22 13:26:45 +02:00
|
|
|
$(curdir)/qemu/compile := $(curdir)/e2fsprogs/install
|
2010-08-09 07:22:34 +03:00
|
|
|
$(curdir)/upslug2/compile := $(curdir)/automake/install
|
2010-12-22 02:02:36 +02:00
|
|
|
$(curdir)/mm-macros/compile := $(curdir)/automake/install
|
2010-12-10 22:25:52 +02:00
|
|
|
$(curdir)/xorg-macros/compile := $(curdir)/automake/install
|
2011-03-09 16:44:23 +02:00
|
|
|
$(curdir)/xfce-macros/compile := $(curdir)/automake/install
|
2010-12-22 01:50:41 +02:00
|
|
|
$(curdir)/missing-macros/compile := $(curdir)/automake/install
|
2011-01-01 17:18:57 +02:00
|
|
|
$(curdir)/e2fsprogs/compile := $(curdir)/automake/install
|
|
|
|
$(curdir)/libelf/compile := $(curdir)/automake/install
|
2006-09-27 17:06:46 +03:00
|
|
|
|
2009-04-06 12:56:12 +03:00
|
|
|
$(curdir)/builddirs := $(tools-y) $(tools-dep) $(tools-)
|
|
|
|
$(curdir)/builddirs-default := $(tools-y)
|
|
|
|
|
2010-09-01 20:51:36 +03:00
|
|
|
ifndef DUMP_TARGET_DB
|
2009-05-26 22:11:52 +03:00
|
|
|
define PrepareStaging
|
|
|
|
@for dir in $(1); do ( \
|
2011-04-04 03:54:37 +03:00
|
|
|
$(if $(QUIET),,set -x;) \
|
2007-08-07 03:04:25 +03:00
|
|
|
mkdir -p "$$dir"; \
|
|
|
|
cd "$$dir"; \
|
|
|
|
mkdir -p bin lib include stamp; \
|
|
|
|
); done
|
2009-05-26 22:11:52 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
# preparatory work
|
2010-12-11 05:18:31 +02:00
|
|
|
$(STAGING_DIR)/.prepared: $(TMP_DIR)/.build
|
2009-05-26 22:11:52 +03: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 09:49:56 +03:00
|
|
|
mkdir -p $(BUILD_DIR_HOST)/stamp $(STAGING_DIR_HOST)/include/sys
|
2007-08-07 03:04:25 +03:00
|
|
|
$(INSTALL_DATA) $(TOPDIR)/tools/include/*.h $(STAGING_DIR_HOST)/include/
|
2011-07-02 09:49:56 +03:00
|
|
|
$(INSTALL_DATA) $(TOPDIR)/tools/include/sys/*.h $(STAGING_DIR_HOST)/include/sys/
|
2007-08-07 03:04:25 +03:00
|
|
|
touch $@
|
|
|
|
|
2009-05-26 22:11:52 +03:00
|
|
|
|
2009-01-25 21:00:43 +02: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 20:51:36 +03:00
|
|
|
endif
|
2009-01-25 21:00:43 +02:00
|
|
|
|
|
|
|
$(eval $(call PrepareCommand,find,gfind find))
|
|
|
|
$(eval $(call PrepareCommand,md5sum,md5sum $(SCRIPT_DIR)/md5sum))
|
|
|
|
$(eval $(call PrepareCommand,cp,gcp cp))
|
2009-02-19 19:18:26 +02:00
|
|
|
$(eval $(call PrepareCommand,stat,gstat stat))
|
2009-01-25 21:00:43 +02:00
|
|
|
|
2009-02-19 19:18:26 +02:00
|
|
|
$(curdir)/cmddeps = $(patsubst %,$(STAGING_DIR_HOST)/bin/%,find md5sum cp stat)
|
2009-05-26 22:11:52 +03: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 17:06:46 +03:00
|
|
|
|
2007-07-28 05:44:55 +03:00
|
|
|
# prerequisites for the individual targets
|
2007-07-30 21:22:01 +03:00
|
|
|
$(curdir)/ := .config prereq
|
2007-07-28 16:44:04 +03:00
|
|
|
$(curdir)//install = $(1)/compile
|
2007-07-28 05:53:54 +03:00
|
|
|
|
2011-01-27 15:55:00 +02: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 16:44:04 +03:00
|
|
|
$(eval $(call subdir,$(curdir)))
|