add missing dependencies which broke parallel build
[openwrt-10.03/.git] / tools / Makefile
1
2 # Copyright (C) 2007 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # Main makefile for the host tools
8 #
9 curdir:=tools
10
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
13
14 tools-$(CONFIG_CCACHE) += ccache
15 tools-$(CONFIG_powerpc) += dtc
16 tools-$(CONFIG_GCC_VERSION_4_3)$(CONFIG_GCC_VERSION_4_4) += gmp mpfr
17
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 $(curdir)/autoconf/install
24 $(curdir)/mpfr/compile := $(curdir)/gmp/install
25
26 $(curdir)/builddirs := $(tools-y) $(tools-dep) $(tools-)
27 $(curdir)/builddirs-default := $(tools-y)
28
29 # preparatory work
30 $(STAGING_DIR)/.prepared: $(TMP_DIR)/.build
31         @for dir in $(STAGING_DIR) $(STAGING_DIR_HOST); do ( \
32                 set -x; \
33                 mkdir -p "$$dir"; \
34                 cd "$$dir"; \
35                 mkdir -p bin lib include stamp; \
36         ); done
37         mkdir -p $(BUILD_DIR_HOST)/stamp $(BUILD_DIR)/stamp
38         $(INSTALL_DATA) $(TOPDIR)/tools/include/*.h $(STAGING_DIR_HOST)/include/
39         touch $@
40
41 define PrepareCommand
42 $(STAGING_DIR_HOST)/bin/$(1): $(STAGING_DIR)/.prepared
43         @mkdir -p "$$(dir $$@)"; rm -f "$$@"
44         @export FILE="$$$$(which $(2) 2>/dev/null | grep -v 'not found' | head -n1)"; [ -n "$$$$FILE" ] || { \
45                 echo "Command $(1) not found."; false; \
46         }; ln -s "$$$$FILE" "$$@"
47
48 endef
49
50 $(eval $(call PrepareCommand,find,gfind find))
51 $(eval $(call PrepareCommand,md5sum,md5sum $(SCRIPT_DIR)/md5sum))
52 $(eval $(call PrepareCommand,cp,gcp cp))
53 $(eval $(call PrepareCommand,stat,gstat stat))
54
55 $(curdir)/cmddeps = $(patsubst %,$(STAGING_DIR_HOST)/bin/%,find md5sum cp stat)
56 $(curdir)//prepare = $(STAGING_DIR)/.prepared $($(curdir)/cmddeps)
57 $(curdir)//compile = $(STAGING_DIR)/.prepared $($(curdir)/cmddeps)
58
59 # prerequisites for the individual targets
60 $(curdir)/ := .config prereq
61 $(curdir)//install = $(1)/compile
62
63 $(eval $(call stampfile,$(curdir),tools,install,,CONFIG_CCACHE CONFIG_powerpc CONFIG_GCC_VERSION_4_3))
64 $(eval $(call subdir,$(curdir)))