move ccache to tools/ and fix potential dependency issue
[openwrt/svn-archive/archive.git] / tools / Makefile
1 #
2 # Copyright (C) 2006 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 include $(TOPDIR)/rules.mk
10 TARGETS-y:=sed sstrip ipkg-utils ext2fs squashfs mtd-utils lzma mkimage firmware-utils
11 TARGETS-$(CONFIG_CCACHE) += ccache
12
13 TARGETS_DOWNLOAD:=$(patsubst %,%-download,$(TARGETS-y))
14 TARGETS_PREPARE:=$(patsubst %,%-prepare,$(TARGETS-y))
15 TARGETS_COMPILE:=$(patsubst %,%-compile,$(TARGETS-y))
16 TARGETS_INSTALL:=$(patsubst %,%-install,$(TARGETS-y))
17 TARGETS_CLEAN:=$(patsubst %,%-clean,$(TARGETS-y))
18 STAMP:=$(STAGING_DIR)/stampfiles/.tools_installed
19
20 all: install
21 download: $(TARGETS_DOWNLOAD)
22 compile: $(TARGETS_COMPILE)
23 install: $(STAMP)
24 clean: $(TARGETS_CLEAN)
25
26 squashfs-compile: lzma-install
27
28 ifneq ($(shell $(SCRIPT_DIR)/timestamp.pl -p . $(STAMP)),$(STAMP))
29 $(STAMP): $(TARGETS_INSTALL)
30 endif
31
32 $(STAMP): $(TOPDIR)/.config
33 mkdir -p $(shell dirname $@)
34 touch $@
35
36 $(STAGING_DIR)/include-host:
37 @mkdir -p $@
38 @$(CP) ./include/*.h $@/
39
40 $(TOOL_BUILD_DIR):
41 @mkdir -p $@
42
43 $(eval $(call default_subtargets,$(STAGING_DIR)/include-host $(TOOL_BUILD_DIR)))
44
45 ifeq ($(MAKECMDGOALS),install-targets)
46 MAKEFLAGS:=$(MAKEFLAGS) -j$(CONFIG_JLEVEL)
47 else
48 .NOTPARALLEL:
49 endif