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