From: Dave Vasilevsky Date: Wed, 7 May 2025 01:55:22 +0000 (-0400) Subject: seekable_format: Build with $(MAKE) X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6b0039abcf5fb9ef1f942ded9cc86ec10e062c1e;p=thirdparty%2Fzstd.git seekable_format: Build with $(MAKE) This passes make flags, such as `-jN` for building in parallel, to the underlying make. --- diff --git a/contrib/seekable_format/examples/Makefile b/contrib/seekable_format/examples/Makefile index fcc04587c..336d8c722 100644 --- a/contrib/seekable_format/examples/Makefile +++ b/contrib/seekable_format/examples/Makefile @@ -28,7 +28,7 @@ all: seekable_compression seekable_decompression seekable_decompression_mem \ parallel_processing $(ZSTDLIB): - make -C $(ZSTDLIB_PATH) $(ZSTDLIB_NAME) + $(MAKE) -C $(ZSTDLIB_PATH) $(ZSTDLIB_NAME) seekable_compression : seekable_compression.c $(SEEKABLE_OBJS) $(CC) $(CPPFLAGS) $(CFLAGS) $^ $(LDFLAGS) -o $@