diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:09:18 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:09:18 -0700 |
commit | 23c69f10698301ae97709eb0bbfb371d66b99a08 (patch) | |
tree | 1956b671b3df8d12c315a38f33b190677ccd659e /Makefile.msc | |
parent | 6b834a58bdef976383cff6e2a83f353e668a9cf1 (diff) | |
download | zlib-0.94.tar.gz zlib-0.94.tar.bz2 zlib-0.94.zip |
zlib 0.94v0.94
Diffstat (limited to '')
-rw-r--r-- | Makefile.msc | 8 |
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: |
82 | zlib.lib: $(OBJ1) $(OBJ2) | 81 | zlib.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 | ||