X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=toolchain%2Fccache%2FMakefile;h=e8e85b442afc04f39c6852d44e5e1112ea2d247e;hb=f53ddba44017bdd49c6ef149acaea2580d4988ce;hp=348aed0fced18991f70015bbe79712fb87e8073a;hpb=8ab2244c0d7a13a8349f9c5fc6aabe7f87c04497;p=openwrt-10.03%2F.git diff --git a/toolchain/ccache/Makefile b/toolchain/ccache/Makefile index 348aed0fc..e8e85b442 100644 --- a/toolchain/ccache/Makefile +++ b/toolchain/ccache/Makefile @@ -19,24 +19,31 @@ PKG_BUILD_DIR:=$(TOOLCHAIN_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) include $(INCLUDE_DIR)/host-build.mk -ifneq ($(shell which ccache),) - define Build/Configure - $(call Build/Configure/Default) - endef - +ifneq ($(strip $(shell which ccache >/dev/null && echo found)),found) define Build/Compile - $(MAKE) CC="$(HOSTCC)" -C $(PKG_BUILD_DIR) + $(MAKE) CC="$(HOSTCC)" -C $(PKG_BUILD_DIR) endef define Build/Install - $(MAKE) -C $(PKG_BUILD_DIR) \ - DESTDIR="$(STAGING_DIR)" \ + $(MAKE) -C $(PKG_BUILD_DIR) \ + DESTDIR="$(STAGING_DIR)" \ install endef define Build/Clean - $(MAKE) -C $(PKG_BUILD_DIR) uninstall + -$(MAKE) -C $(PKG_BUILD_DIR) uninstall -$(MAKE) -C $(PKG_BUILD_DIR) clean + $(call Build/Clean/Default) + endef +else + define Build/Prepare + endef + define Build/Configure + endef + define Build/Compile + endef + define Build/Clean endef endif + $(eval $(call HostBuild))