| 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++ ------------- |
| 16 | |
| 17 | LIBTARGET=..\..\lib\zlib.lib |
| 18 | |
| 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 |
| 22 | |
| 23 | !include $(WXWIN)\src\makelib.b32 |
| 24 | |