# See zconf.h for details about the memory requirements.
# ------------- Turbo C++, Borland C++ -------------
-CFLAGS=-O2 /MD /GX
+!ifndef FINAL
+FINAL=0
+!endif
+
+!if "$(FINAL)" == "0"
+CFLAGS=/Od $(CRTFLAG) /GX
+_CRTFLAG=/MDd
+!else
+CFLAGS=-O2 $(CRTFLAG) /GX
+_CRTFLAG=/MD
+!endif
+
+!if "$(CRTFLAG)" == ""
+CRTFLAG=$(_CRTFLAG)
+!endif
+
+
CC=cl
LD=cl
LIB=tlib
# variables
OBJ1 = adler32$(O) compress$(O) crc32$(O) gzio$(O) uncompr$(O) deflate$(O) \
- trees$(O)
+ trees$(O)
OBJ2 = zutil$(O) inflate$(O) infblock$(O) inftrees$(O) infcodes$(O) \
- infutil$(O) inffast$(O)
+ infutil$(O) inffast$(O)
all: $(LIBTARGET)