toolchain/ has been converted
[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 $(curdir)/builddirs := sed sstrip ipkg-utils ext2fs squashfs mtd-utils lzma mkimage firmware-utils patch-cmdline $(if $(CONFIG_CCACHE),ccache)
13
14 # builddir dependencies
15 $(curdir)/squashfs/compile := $(curdir)/lzma/install
16
17 # preparatory work
18 define copy_include
19 $(STAGING_DIR)/include-host/.done:
20         @mkdir -p $$$$(dirname $$@)
21         @cp $(1)/include/*.h $$$$(dirname $$@)/
22         @touch $$@
23 $(curdir)//prepare = $(STAGING_DIR)/include-host/.done
24 endef
25 $(eval $(call copy_include,$(curdir)))
26
27 # prerequisites for the individual targets
28 $(curdir)/ := .config
29 $(curdir)//compile = $(1)/prepare
30 $(curdir)//install = $(1)/compile
31
32 $(eval $(call stampfile,$(curdir),tools))
33 $(eval $(call subdir,$(curdir)))