tools: clean up Makefiles / make ccache work
[openwrt/staging/yousong.git] / tools / ccache / 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 include $(TOPDIR)/rules.mk
8 include $(INCLUDE_DIR)/target.mk
9
10 PKG_NAME:=ccache
11 PKG_VERSION:=3.1.3
12
13 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
14 PKG_SOURCE_URL:=http://samba.org/ftp/ccache/
15 PKG_MD5SUM:=b952d75e9ca37209d608ea58d84135cd
16 PKG_CAT:=zcat
17
18 include $(INCLUDE_DIR)/host-build.mk
19
20 ifneq ($(strip $(shell which ccache >/dev/null && echo found)),found)
21 define Host/Compile
22 $(MAKE) CC="$(HOSTCC_NOCACHE)" -C $(HOST_BUILD_DIR)
23 endef
24
25 define Host/Clean
26 -$(MAKE) -C $(HOST_BUILD_DIR) uninstall
27 $(call Host/Clean/Default)
28 endef
29 else
30 define Host/Prepare
31 endef
32 define Host/Configure
33 endef
34 define Host/Compile
35 endef
36 define Host/Install
37 endef
38 define Host/Clean
39 endef
40 define Download
41 endef
42 endif
43
44 $(eval $(call HostBuild))