2 # Copyright (C) 2007 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
7 # Main makefile for the host tools
11 # subdirectories to descend into
12 tools-y
:= sed sstrip ipkg-utils genext2fs squashfs mtd-utils lzma mkimage firmware-utils patch-cmdline pkg-config m4 autoconf automake bison quilt yaffs2
14 tools-
$(CONFIG_CCACHE
) += ccache
15 tools-
$(CONFIG_powerpc
) += dtc
16 tools-
$(CONFIG_GCC_VERSION_4_3
)$(CONFIG_GCC_VERSION_4_4
) += gmp mpfr
18 # builddir dependencies
19 $(curdir
)/squashfs
/compile
:= $(curdir
)/lzma
/install
20 $(curdir
)/quilt
/compile
:= $(curdir
)/sed
/install
21 $(curdir
)/dtc
/compile
:= $(curdir
)/bison
/install
22 $(curdir
)/autoconf
/compile
:= $(curdir
)/m4
/install
23 $(curdir
)/automake
/compile
:= $(curdir
)/m4
/install
25 $(curdir
)/builddirs
:= $(tools-y
) $(tools-dep
) $(tools-
)
26 $(curdir
)/builddirs-default
:= $(tools-y
)
29 $(STAGING_DIR
)/.prepared
: $(TMP_DIR
)/.build
30 @for
dir in
$(STAGING_DIR
) $(STAGING_DIR_HOST
); do
( \
34 mkdir
-p bin lib
include stamp
; \
36 mkdir
-p
$(BUILD_DIR_HOST
)/stamp
$(BUILD_DIR
)/stamp
37 $(INSTALL_DATA
) $(TOPDIR
)/tools
/include/*.h
$(STAGING_DIR_HOST
)/include/
41 $(STAGING_DIR_HOST
)/bin
/$(1): $(STAGING_DIR
)/.prepared
42 @mkdir
-p
"$$(dir $$@)"; rm -f
"$$@"
43 @
export FILE
="$$$$(which $(2) 2>/dev/null | grep -v 'not found' | head -n1)"; [ -n
"$$$$FILE" ] ||
{ \
44 echo
"Command $(1) not found."; false
; \
45 }; ln
-s
"$$$$FILE" "$$@"
49 $(eval
$(call PrepareCommand
,find
,gfind find
))
50 $(eval
$(call PrepareCommand
,md5sum
,md5sum
$(SCRIPT_DIR
)/md5sum
))
51 $(eval
$(call PrepareCommand
,cp
,gcp cp
))
52 $(eval
$(call PrepareCommand
,stat
,gstat stat
))
54 $(curdir
)/cmddeps
= $(patsubst %,$(STAGING_DIR_HOST
)/bin
/%,find md5sum cp stat
)
55 $(curdir
)//prepare
= $(STAGING_DIR
)/.prepared
$($(curdir
)/cmddeps
)
56 $(curdir
)//compile
= $(STAGING_DIR
)/.prepared
$($(curdir
)/cmddeps
)
58 # prerequisites for the individual targets
59 $(curdir
)/ := .config prereq
60 $(curdir
)//install = $(1)/compile
62 $(eval
$(call stampfile
,$(curdir
),tools
,install,,CONFIG_CCACHE CONFIG_powerpc CONFIG_GCC_VERSION_4_3
))
63 $(eval
$(call subdir
,$(curdir
)))