diff options
Diffstat (limited to 'old/msdos/Makefile.wat')
-rw-r--r-- | old/msdos/Makefile.wat | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/old/msdos/Makefile.wat b/old/msdos/Makefile.wat index 44bf860..065fe4c 100644 --- a/old/msdos/Makefile.wat +++ b/old/msdos/Makefile.wat | |||
@@ -2,8 +2,8 @@ | |||
2 | # Watcom 10a | 2 | # Watcom 10a |
3 | 3 | ||
4 | # This version of the zlib makefile was adapted by Chris Young for use | 4 | # This version of the zlib makefile was adapted by Chris Young for use |
5 | # with Watcom 10a 32-bit protected mode flat memory model. It was created | 5 | # with Watcom 10a 32-bit protected mode flat memory model. It was created |
6 | # for use with POV-Ray ray tracer and you may choose to edit the CFLAGS to | 6 | # for use with POV-Ray ray tracer and you may choose to edit the CFLAGS to |
7 | # suit your needs but the -DMSDOS is required. | 7 | # suit your needs but the -DMSDOS is required. |
8 | # -- Chris Young 76702.1655@compuserve.com | 8 | # -- Chris Young 76702.1655@compuserve.com |
9 | 9 | ||
@@ -12,17 +12,17 @@ | |||
12 | # See zconf.h for details about the memory requirements. | 12 | # See zconf.h for details about the memory requirements. |
13 | 13 | ||
14 | # ------------- Watcom 10a ------------- | 14 | # ------------- Watcom 10a ------------- |
15 | MODEL=-mf | 15 | MODEL=-mf |
16 | CFLAGS= $(MODEL) -fpi87 -fp5 -zp4 -5r -w5 -oneatx -DMSDOS | 16 | CFLAGS= $(MODEL) -fpi87 -fp5 -zp4 -5r -w5 -oneatx -DMSDOS |
17 | CC=wcc386 | 17 | CC=wcc386 |
18 | LD=wcl386 | 18 | LD=wcl386 |
19 | LIB=wlib -b -c | 19 | LIB=wlib -b -c |
20 | LDFLAGS= | 20 | LDFLAGS= |
21 | O=.obj | 21 | O=.obj |
22 | 22 | ||
23 | # variables | 23 | # variables |
24 | OBJ1=adler32$(O) compress$(O) crc32$(O) gzio$(O) uncompr$(O) deflate$(O) | 24 | OBJ1=adler32$(O) compress$(O) crc32$(O) gzio$(O) uncompr$(O) deflate$(O) |
25 | OBJ2=trees$(O) zutil$(O) inflate$(O) infblock$(O) inftrees$(O) infcodes$(O) | 25 | OBJ2=trees$(O) zutil$(O) inflate$(O) infblock$(O) inftrees$(O) infcodes$(O) |
26 | OBJ3=infutil$(O) inffast$(O) | 26 | OBJ3=infutil$(O) inffast$(O) |
27 | OBJP1=adler32$(O)+compress$(O)+crc32$(O)+gzio$(O)+uncompr$(O)+deflate$(O) | 27 | OBJP1=adler32$(O)+compress$(O)+crc32$(O)+gzio$(O)+uncompr$(O)+deflate$(O) |
28 | OBJP2=trees$(O)+zutil$(O)+inflate$(O)+infblock$(O)+inftrees$(O)+infcodes$(O) | 28 | OBJP2=trees$(O)+zutil$(O)+inflate$(O)+infblock$(O)+inftrees$(O)+infcodes$(O) |
@@ -81,7 +81,7 @@ minigzip.obj: minigzip.c zlib.h zconf.h | |||
81 | $(CC) $(CFLAGS) $*.c | 81 | $(CC) $(CFLAGS) $*.c |
82 | 82 | ||
83 | # we must cut the command line to fit in the MS/DOS 128 byte limit: | 83 | # we must cut the command line to fit in the MS/DOS 128 byte limit: |
84 | zlib.lib: $(OBJ1) $(OBJ2) $(OBJ3) | 84 | zlib.lib: $(OBJ1) $(OBJ2) $(OBJ3) |
85 | del zlib.lib | 85 | del zlib.lib |
86 | $(LIB) zlib.lib +$(OBJP1) | 86 | $(LIB) zlib.lib +$(OBJP1) |
87 | $(LIB) zlib.lib +$(OBJP2) | 87 | $(LIB) zlib.lib +$(OBJP2) |