build system fixes, more cleanup
[openwrt/staging/chunkeey.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
10 curdir:=tools
11
12 # subdirectories to descend into
13 tools/builddirs := sed sstrip ipkg-utils ext2fs squashfs mtd-utils lzma mkimage firmware-utils patch-cmdline $(if $(CONFIG_CCACHE),ccache)
14
15 # builddir dependencies
16 tools/squashfs/compile := tools/lzma/install
17
18 # preparatory work
19 $(STAGING_DIR)/include-host/.done:
20 @mkdir -p $$(dirname $@)
21 @cp tools/include/*.h $$(dirname $@)/
22 @touch $@
23
24 # prerequisites for the individual targets
25 tools/ := .config
26 tools//prepare = $(STAGING_DIR)/include-host/.done
27 tools//compile = $(1)/prepare
28 tools//install = $(1)/compile
29
30 $(eval $(call stampfile,tools,tools))
31 $(eval $(call subdir,tools))