442094a180cb3795ff9cce311405143a543258ed
[openwrt/openwrt.git] / tools / ccache / Makefile
1 #
2 # Copyright (C) 2006-2012 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.7
12
13 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
14 PKG_SOURCE_URL:=http://samba.org/ftp/ccache/
15 PKG_MD5SUM:=80a698c22d0b06b19c88ac58e8d8b632
16
17 include $(INCLUDE_DIR)/host-build.mk
18
19 define Host/Install/ccache
20 $(INSTALL_DIR) $(STAGING_DIR_HOST)/bin/
21 $(CP) ./files/* $(STAGING_DIR_HOST)/bin/
22 endef
23
24 ifneq ($(strip $(shell which ccache >/dev/null && echo found)),found)
25 define Host/Compile
26 $(MAKE) CC="$(HOSTCC_NOCACHE)" -C $(HOST_BUILD_DIR)
27 endef
28
29 define Host/Clean
30 -$(MAKE) -C $(HOST_BUILD_DIR) uninstall
31 $(call Host/Clean/Default)
32 endef
33 define Host/Install
34 $(call Host/Install/Default)
35 $(call Host/Install/ccache)
36 endef
37 else
38 define Host/Prepare
39 endef
40 define Host/Configure
41 endef
42 define Host/Compile
43 endef
44 define Host/Install
45 $(call Host/Install/ccache)
46 endef
47 define Host/Clean
48 endef
49 define Download
50 endef
51 endif
52
53 $(eval $(call HostBuild))