diff options
author | John Crispin <blogic@openwrt.org> | 2012-06-06 13:27:11 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2012-06-06 13:27:11 +0000 |
commit | e84fbcf5bc52dbeb2f8459d7ce25b61e6ce90fe5 (patch) | |
tree | deed598b50e65f1e706caa3c581fd80570626fdf /tools/ccache/Makefile | |
parent | 3cb13b3da5f6c43e256c764e4dc1964a1d312241 (diff) | |
download | master-187ad058-e84fbcf5bc52dbeb2f8459d7ce25b61e6ce90fe5.tar.gz master-187ad058-e84fbcf5bc52dbeb2f8459d7ce25b61e6ce90fe5.tar.bz2 master-187ad058-e84fbcf5bc52dbeb2f8459d7ce25b61e6ce90fe5.zip |
[tools] add ccache wrapper
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32075 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'tools/ccache/Makefile')
-rw-r--r-- | tools/ccache/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/ccache/Makefile b/tools/ccache/Makefile index 9bc0b5901a..8848fa5102 100644 --- a/tools/ccache/Makefile +++ b/tools/ccache/Makefile @@ -17,6 +17,11 @@ PKG_CAT:=zcat include $(INCLUDE_DIR)/host-build.mk +define Host/Install/ccache + $(INSTALL_DIR) $(STAGING_DIR_HOST)/bin/ + $(CP) ./files/* $(STAGING_DIR_HOST)/bin/ +endef + ifneq ($(strip $(shell which ccache >/dev/null && echo found)),found) define Host/Compile $(MAKE) CC="$(HOSTCC_NOCACHE)" -C $(HOST_BUILD_DIR) @@ -26,6 +31,10 @@ ifneq ($(strip $(shell which ccache >/dev/null && echo found)),found) -$(MAKE) -C $(HOST_BUILD_DIR) uninstall $(call Host/Clean/Default) endef + define Host/Install + $(call Host/Install/Default) + $(call Host/Install/ccache) + endef else define Host/Prepare endef @@ -34,6 +43,7 @@ else define Host/Compile endef define Host/Install + $(call Host/Install/ccache) endef define Host/Clean endef |