2006-12-11 18:42:57 +02:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# 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
|
2010-12-09 14:12:40 +02:00
|
|
|
PKG_VERSION:=3.1.3
|
2006-12-11 18:42:57 +02:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://samba.org/ftp/ccache/
|
2010-12-09 14:12:40 +02:00
|
|
|
PKG_MD5SUM:=b952d75e9ca37209d608ea58d84135cd
|
2006-12-11 18:42:57 +02:00
|
|
|
PKG_CAT:=zcat
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
|
2007-02-28 01:44:04 +02:00
|
|
|
ifneq ($(strip $(shell which ccache >/dev/null && echo found)),found)
|
2009-02-22 06:37:20 +02:00
|
|
|
define Host/Compile
|
2012-01-15 13:43:13 +02:00
|
|
|
$(MAKE) CC="$(HOSTCC_NOCACHE)" -C $(HOST_BUILD_DIR)
|
2006-12-11 18:42:57 +02:00
|
|
|
endef
|
|
|
|
|
2009-02-22 06:37:20 +02:00
|
|
|
define Host/Clean
|
|
|
|
-$(MAKE) -C $(HOST_BUILD_DIR) uninstall
|
|
|
|
$(call Host/Clean/Default)
|
2007-02-28 01:44:04 +02:00
|
|
|
endef
|
|
|
|
else
|
2009-02-22 06:37:20 +02:00
|
|
|
define Host/Prepare
|
2007-02-28 01:44:04 +02:00
|
|
|
endef
|
2009-02-22 06:37:20 +02:00
|
|
|
define Host/Configure
|
2007-02-28 01:44:04 +02:00
|
|
|
endef
|
2009-02-22 06:37:20 +02:00
|
|
|
define Host/Compile
|
2007-02-28 01:44:04 +02:00
|
|
|
endef
|
2009-04-09 16:16:57 +03:00
|
|
|
define Host/Install
|
|
|
|
endef
|
2009-02-22 06:37:20 +02:00
|
|
|
define Host/Clean
|
2006-12-11 18:42:57 +02:00
|
|
|
endef
|
2012-01-15 13:43:13 +02:00
|
|
|
define Download
|
|
|
|
endef
|
2006-12-11 18:42:57 +02:00
|
|
|
endif
|
2007-02-28 01:44:04 +02:00
|
|
|
|
2006-12-11 18:42:57 +02:00
|
|
|
$(eval $(call HostBuild))
|