From 6d95c6f685aa9b40e0afc5bcc999eef786ceef00 Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Mon, 16 Feb 2026 22:02:09 -0800 Subject: Fix the minizip Makefile to work with both BSD and GNU make. It previously relied on a GNU make implicit rule. --- contrib/minizip/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/minizip/Makefile b/contrib/minizip/Makefile index f5f65f72..07c1f485 100644 --- a/contrib/minizip/Makefile +++ b/contrib/minizip/Makefile @@ -14,8 +14,10 @@ iowin32.o: iowin32.c iowin32.h ioapi.h mztools.o: mztools.c unzip.h miniunz: $(UNZ_OBJS) + ${CC} ${LDFLAGS} -o $@ $(UNZ_OBJS) minizip: $(ZIP_OBJS) + ${CC} ${LDFLAGS} -o $@ $(ZIP_OBJS) test: miniunz minizip @rm -f test.* -- cgit v1.2.3-55-g6feb