2006-12-12 00:42:57 +08:00
|
|
|
#
|
2013-02-28 07:08:02 +08:00
|
|
|
# Copyright (C) 2006-2013 OpenWrt.org
|
2006-12-12 00:42:57 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
include $(INCLUDE_DIR)/target.mk
|
|
|
|
|
|
|
|
PKG_NAME:=ccache
|
2013-02-28 07:08:02 +08:00
|
|
|
PKG_VERSION:=3.1.9
|
2006-12-12 00:42:57 +08:00
|
|
|
|
2012-04-03 00:25:08 +08:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
2006-12-12 00:42:57 +08:00
|
|
|
PKG_SOURCE_URL:=http://samba.org/ftp/ccache/
|
2013-02-28 07:08:02 +08:00
|
|
|
PKG_MD5SUM:=522a6016bda56892653612bbdefff3e0
|
2006-12-12 00:42:57 +08:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
|
2012-08-12 20:34:30 +08:00
|
|
|
HOST_LDFLAGS += $(HOST_STATIC_LINKING)
|
2012-08-11 03:27:03 +08:00
|
|
|
HOST_CONFIGURE_VARS += CC="$(HOSTCC_NOCACHE)"
|
2012-08-11 03:05:22 +08:00
|
|
|
|
2012-06-06 21:27:11 +08:00
|
|
|
define Host/Install/ccache
|
|
|
|
$(INSTALL_DIR) $(STAGING_DIR_HOST)/bin/
|
|
|
|
$(CP) ./files/* $(STAGING_DIR_HOST)/bin/
|
|
|
|
endef
|
|
|
|
|
2007-02-28 07:44:04 +08:00
|
|
|
ifneq ($(strip $(shell which ccache >/dev/null && echo found)),found)
|
2009-02-22 12:37:20 +08:00
|
|
|
define Host/Clean
|
|
|
|
-$(MAKE) -C $(HOST_BUILD_DIR) uninstall
|
|
|
|
$(call Host/Clean/Default)
|
2007-02-28 07:44:04 +08:00
|
|
|
endef
|
2012-06-06 21:27:11 +08:00
|
|
|
define Host/Install
|
|
|
|
$(call Host/Install/Default)
|
|
|
|
$(call Host/Install/ccache)
|
|
|
|
endef
|
2007-02-28 07:44:04 +08:00
|
|
|
else
|
2009-02-22 12:37:20 +08:00
|
|
|
define Host/Prepare
|
2007-02-28 07:44:04 +08:00
|
|
|
endef
|
2009-02-22 12:37:20 +08:00
|
|
|
define Host/Configure
|
2007-02-28 07:44:04 +08:00
|
|
|
endef
|
2009-02-22 12:37:20 +08:00
|
|
|
define Host/Compile
|
2007-02-28 07:44:04 +08:00
|
|
|
endef
|
2009-04-09 21:16:57 +08:00
|
|
|
define Host/Install
|
2012-06-06 21:27:11 +08:00
|
|
|
$(call Host/Install/ccache)
|
2009-04-09 21:16:57 +08:00
|
|
|
endef
|
2009-02-22 12:37:20 +08:00
|
|
|
define Host/Clean
|
2006-12-12 00:42:57 +08:00
|
|
|
endef
|
2012-01-15 19:43:13 +08:00
|
|
|
define Download
|
|
|
|
endef
|
2006-12-12 00:42:57 +08:00
|
|
|
endif
|
2007-02-28 07:44:04 +08:00
|
|
|
|
2006-12-12 00:42:57 +08:00
|
|
|
$(eval $(call HostBuild))
|