]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | # Makefile for zlib |
2 | # Borland C++ | |
3 | ||
4 | # This version of the zlib makefile was adapted by Chris Young for use | |
5 | # with Borland C 4.5x with the Dos Power Pack for a 32-bit protected mode | |
6 | # flat memory model. It was created for use with POV-Ray ray tracer and | |
7 | # you may choose to edit the CFLAGS to suit your needs but the | |
8 | # switches -WX and -DMSDOS are required. | |
9 | # -- Chris Young 76702.1655@compuserve.com | |
10 | ||
11 | # To use, do "make -fmakefile.b32" | |
12 | ||
13 | # See zconf.h for details about the memory requirements. | |
14 | ||
15 | # ------------- Borland C++ ------------- | |
c801d85f | 16 | |
58c55d1f | 17 | LIBTARGET=..\..\lib\zlib.lib |
c801d85f | 18 | |
7d5818e0 BM |
19 | OBJECTS = adler32.obj compress.obj crc32.obj gzio.obj uncompr.obj deflate.obj \ |
20 | trees.obj zutil.obj inflate.obj infblock.obj inftrees.obj infcodes.obj \ | |
21 | infutil.obj inffast.obj | |
c801d85f | 22 | |
7d5818e0 | 23 | !include $(WXWIN)\src\makelib.b32 |
c801d85f | 24 |