summaryrefslogtreecommitdiff
path: root/Makefile.msc
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.msc')
-rw-r--r--Makefile.msc8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.msc b/Makefile.msc
index d6899d8..335a4e1 100644
--- a/Makefile.msc
+++ b/Makefile.msc
@@ -3,10 +3,9 @@
3 3
4# To use, do "make makefile.msc" 4# To use, do "make makefile.msc"
5 5
6# WARNING: the small model is supported but only for small values of 6# If you wish to reduce the memory requirements (default 256K for big
7# MAX_WBITS and MAX_MEM_LEVEL. If you wish to reduce the memory 7# objects plus a few K), you can add to CFLAGS below:
8# requirements (default 256K for big objects plus a few K), you can add 8# -DMAX_MEM_LEVEL=7 -DMAX_WBITS=14
9# to CFLAGS below: -DMAX_MEM_LEVEL=7 -DMAX_WBITS=14
10# See zconf.h for details about the memory requirements. 9# See zconf.h for details about the memory requirements.
11 10
12# ------------- Microsoft C 5.1 and later ------------- 11# ------------- Microsoft C 5.1 and later -------------
@@ -80,6 +79,7 @@ minigzip.obj: minigzip.c zlib.h zconf.h
80 79
81# we must cut the command line to fit in the MS/DOS 128 byte limit: 80# we must cut the command line to fit in the MS/DOS 128 byte limit:
82zlib.lib: $(OBJ1) $(OBJ2) 81zlib.lib: $(OBJ1) $(OBJ2)
82 del zlib.lib
83 lib zlib $(OBJ1); 83 lib zlib $(OBJ1);
84 lib zlib $(OBJ2); 84 lib zlib $(OBJ2);
85 85