diff options
author | Christian Marangi <ansuelsmth@gmail.com> | 2024-04-03 01:07:14 +0200 |
---|---|---|
committer | Robert Marko <robimarko@gmail.com> | 2024-04-06 11:24:18 +0200 |
commit | 4b920e799fba445c450d9bc86843c0a37e202e7f (patch) | |
tree | 059838f15cb3ae22c6a6e3436428b141ced1532c /tools/zstd/Makefile | |
parent | 706f0e395f5392da0a502f1039aa01ca14849ec5 (diff) |
tools: zstd: convert to make and drop meson dependency
Convert to make and drop meson dependency since it's not a core tools
and can't depend on advanced build system like cmake or meson.
On top of this make is the official build support and cmake/meson are
supported by 3rd parties.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Diffstat (limited to 'tools/zstd/Makefile')
-rw-r--r-- | tools/zstd/Makefile | 40 |
1 files changed, 24 insertions, 16 deletions
diff --git a/tools/zstd/Makefile b/tools/zstd/Makefile index 41dd70b7a9..3f69c6d497 100644 --- a/tools/zstd/Makefile +++ b/tools/zstd/Makefile @@ -11,25 +11,33 @@ PKG_LICENSE:=BSD-3-Clause PKG_LICENSE_FILES:=LICENSE PKG_CPE_ID:=cpe:/a:facebook:zstandard -include $(INCLUDE_DIR)/host-build.mk -include $(INCLUDE_DIR)/meson.mk +HOST_BUILD_PARALLEL:=1 -MESON_HOST_BUILD_DIR:=$(HOST_BUILD_DIR)/build/meson/openwrt-build +include $(INCLUDE_DIR)/host-build.mk HOSTCC:= $(HOSTCC_NOCACHE) -MESON_HOST_ARGS += \ - -Ddefault_library=static \ - -Dlegacy_level=7 \ - -Ddebug_level=0 \ - -Dbacktrace=disabled \ - -Dstatic_runtime=false \ - -Dbin_programs=true \ - -Dbin_tests=false \ - -Dbin_contrib=false \ - -Dmulti_thread=enabled \ - -Dzlib=disabled \ - -Dlzma=disabled \ - -Dlz4=disabled +HOST_MAKE_FLAGS += \ + ZSTD_LEGACY_SUPPORT=7 \ + BACKTRACE=0 \ + HAVE_THREAD=1 \ + HAVE_ZLIB=0 \ + HAVE_LZMA=0 \ + HAVE_LZ4=0 \ + PREFIX=$(HOST_BUILD_PREFIX) + +define Host/Compile + $(call Host/Compile/Default,lib-mt) + $(call Host/Compile/Default,zstd) +endef + +define Host/Install + +$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR)/lib install-pc install-static PREFIX=$(HOST_BUILD_PREFIX) + +$(MAKE) $(HOST_JOBS) -C $(HOST_BUILD_DIR)/programs install PREFIX=$(HOST_BUILD_PREFIX) +endef + +define Host/Uninstall + -$(call Host/Compile/Default,uninstall) +endef $(eval $(call HostBuild)) |