diff options
Diffstat (limited to 'Makefile.bor')
-rw-r--r-- | Makefile.bor | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile.bor b/Makefile.bor index 732ea5d..3a823d0 100644 --- a/Makefile.bor +++ b/Makefile.bor | |||
@@ -4,9 +4,11 @@ | |||
4 | # To use, do "make -fmakefile.bor" | 4 | # To use, do "make -fmakefile.bor" |
5 | 5 | ||
6 | # WARNING: the small model is supported but only for small values of | 6 | # WARNING: the small model is supported but only for small values of |
7 | # MAX_WBITS and MAX_MEM_LEVEL. If you wish to reduce the memory | 7 | # MAX_WBITS and MAX_MEM_LEVEL. For example: |
8 | # requirements (default 256K for big objects plus a few K), you can add | 8 | # -DMAX_WBITS=11 -DDEF_WBITS=11 -DMAX_MEM_LEVEL=3 |
9 | # to CFLAGS below: -DMAX_MEM_LEVEL=7 -DMAX_WBITS=14 | 9 | # If you wish to reduce the memory requirements (default 256K for big |
10 | # objects plus a few K), you can add to CFLAGS below: | ||
11 | # -DMAX_MEM_LEVEL=7 -DMAX_WBITS=14 | ||
10 | # See zconf.h for details about the memory requirements. | 12 | # See zconf.h for details about the memory requirements. |
11 | 13 | ||
12 | # ------------- Turbo C++, Borland C++ ------------- | 14 | # ------------- Turbo C++, Borland C++ ------------- |
@@ -83,6 +85,7 @@ minigzip.obj: minigzip.c zlib.h zconf.h | |||
83 | 85 | ||
84 | # we must cut the command line to fit in the MS/DOS 128 byte limit: | 86 | # we must cut the command line to fit in the MS/DOS 128 byte limit: |
85 | zlib.lib: $(OBJ1) $(OBJ2) | 87 | zlib.lib: $(OBJ1) $(OBJ2) |
88 | del zlib.lib | ||
86 | $(LIB) zlib +$(OBJP1) | 89 | $(LIB) zlib +$(OBJP1) |
87 | $(LIB) zlib +$(OBJP2) | 90 | $(LIB) zlib +$(OBJP2) |
88 | 91 | ||