diff options
author | Rosen Penev <rosenp@gmail.com> | 2021-01-20 20:54:58 -0800 |
---|---|---|
committer | Paul Spooren <mail@aparcar.org> | 2021-01-30 18:14:50 -1000 |
commit | ec0c6c11436d233c3e1f3c1b4461a46348a1a0c7 (patch) | |
tree | f52b04d9712cf3a47ca8b549a25b328c1a7ae25c /tools/Makefile | |
parent | 7534c8a2e1050e480c5b8636deaaf00b7adcb650 (diff) | |
download | upstream-ec0c6c11436d233c3e1f3c1b4461a46348a1a0c7.tar.gz upstream-ec0c6c11436d233c3e1f3c1b4461a46348a1a0c7.tar.bz2 upstream-ec0c6c11436d233c3e1f3c1b4461a46348a1a0c7.zip |
tools/zstd: compile with cmake
It's faster and more reliable.
Removed ccache cmake build dependency as it's now implicit.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile index 09fe340e6c..a2665dbc9a 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -72,6 +72,7 @@ $(curdir)/sdcc/compile := $(curdir)/bison/compile $(curdir)/squashfs/compile := $(curdir)/lzma-old/compile $(curdir)/squashfskit4/compile := $(curdir)/xz/compile $(curdir)/zlib/compile $(curdir)/zlib/compile := $(curdir)/cmake/compile +$(curdir)/zstd/compile := $(curdir)/cmake/compile ifneq ($(HOST_OS),Linux) $(curdir)/squashfskit4/compile += $(curdir)/coreutils/compile @@ -81,7 +82,7 @@ endif ifneq ($(CONFIG_CCACHE)$(CONFIG_SDK),) $(foreach tool, $(filter-out xz zstd patch pkgconf libressl cmake,$(tools-y)), $(eval $(curdir)/$(tool)/compile += $(curdir)/ccache/compile)) tools-y += ccache -$(curdir)/ccache/compile := $(curdir)/cmake/compile $(curdir)/zstd/compile +$(curdir)/ccache/compile := $(curdir)/zstd/compile endif # in case there is no patch tool on the host we need to make patch tool a |