From: Björn Ketelaars Date: Sat, 31 Mar 2018 08:25:07 +0000 (+0200) Subject: examples/Makefile assumes GNU make. X-Git-Tag: v1.3.5~3^2~85^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1089%2Fhead;p=thirdparty%2Fzstd.git examples/Makefile assumes GNU make. This fixes a building issue on systems that default to a different flavour of make (as is the case with OpenBSD). --- diff --git a/examples/Makefile b/examples/Makefile index 2910d23b6..96af41b54 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -22,7 +22,7 @@ all: simple_compression simple_decompression \ multiple_streaming_compression streaming_memory_usage $(LIB) : - make -C ../lib libzstd.a + $(MAKE) -C ../lib libzstd.a simple_compression : simple_compression.c $(LIB) $(CC) $(CPPFLAGS) $(CFLAGS) $^ $(LDFLAGS) -o $@