Permit changing minizip Makefile optimization with CFLAGS.

This commit is contained in:
Mark Adler 2024-03-09 12:59:57 -08:00
parent a8c321be84
commit 54e205f878
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
CC?=cc
CFLAGS := $(CFLAGS) -O -I../..
CFLAGS := -O $(CFLAGS) -I../..
UNZ_OBJS = miniunz.o unzip.o ioapi.o ../../libz.a
ZIP_OBJS = minizip.o zip.o ioapi.o ../../libz.a