]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | # Makefile for zlib |
2 | # Watcom 10a | |
3 | ||
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 | |
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. | |
8 | # -- Chris Young 76702.1655@compuserve.com | |
9 | ||
10 | # To use, do "wmake -f makefile.wat" | |
11 | ||
12 | # See zconf.h for details about the memory requirements. | |
13 | ||
14 | # ------------- Watcom 10a ------------- | |
15 | MODEL=-mf | |
16 | CFLAGS= $(MODEL) -fpi87 -fp5 -zp4 -5r -w5 -oneatx -DMSDOS | |
17 | CC=wcc386 | |
18 | LD=wcl386 | |
19 | LIB=wlib -b -c | |
20 | LDFLAGS= | |
21 | O=.obj | |
58c55d1f | 22 | LIBTARGET=..\..\lib\zlib.lib |
c801d85f KB |
23 | |
24 | # variables | |
25 | OBJ1=adler32$(O) compress$(O) crc32$(O) gzio$(O) uncompr$(O) deflate$(O) | |
26 | OBJ2=trees$(O) zutil$(O) inflate$(O) infblock$(O) inftrees$(O) infcodes$(O) | |
27 | OBJ3=infutil$(O) inffast$(O) | |
28 | OBJP1=adler32$(O)+compress$(O)+crc32$(O)+gzio$(O)+uncompr$(O)+deflate$(O) | |
29 | OBJP2=trees$(O)+zutil$(O)+inflate$(O)+infblock$(O)+inftrees$(O)+infcodes$(O) | |
30 | OBJP3=infutil$(O)+inffast$(O) | |
31 | ||
32 | all: test | |
33 | ||
34 | adler32.obj: adler32.c zutil.h zlib.h zconf.h | |
35 | $(CC) $(CFLAGS) $*.c | |
36 | ||
37 | compress.obj: compress.c zlib.h zconf.h | |
38 | $(CC) $(CFLAGS) $*.c | |
39 | ||
40 | crc32.obj: crc32.c zutil.h zlib.h zconf.h | |
41 | $(CC) $(CFLAGS) $*.c | |
42 | ||
43 | deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h | |
44 | $(CC) $(CFLAGS) $*.c | |
45 | ||
46 | gzio.obj: gzio.c zutil.h zlib.h zconf.h | |
47 | $(CC) $(CFLAGS) $*.c | |
48 | ||
49 | infblock.obj: infblock.c zutil.h zlib.h zconf.h infblock.h inftrees.h & | |
50 | infcodes.h infutil.h | |
51 | $(CC) $(CFLAGS) $*.c | |
52 | ||
53 | infcodes.obj: infcodes.c zutil.h zlib.h zconf.h inftrees.h infutil.h & | |
54 | infcodes.h inffast.h | |
55 | $(CC) $(CFLAGS) $*.c | |
56 | ||
57 | inflate.obj: inflate.c zutil.h zlib.h zconf.h infblock.h | |
58 | $(CC) $(CFLAGS) $*.c | |
59 | ||
60 | inftrees.obj: inftrees.c zutil.h zlib.h zconf.h inftrees.h | |
61 | $(CC) $(CFLAGS) $*.c | |
62 | ||
63 | infutil.obj: infutil.c zutil.h zlib.h zconf.h inftrees.h infutil.h | |
64 | $(CC) $(CFLAGS) $*.c | |
65 | ||
66 | inffast.obj: inffast.c zutil.h zlib.h zconf.h inftrees.h infutil.h inffast.h | |
67 | $(CC) $(CFLAGS) $*.c | |
68 | ||
69 | trees.obj: trees.c deflate.h zutil.h zlib.h zconf.h | |
70 | $(CC) $(CFLAGS) $*.c | |
71 | ||
72 | uncompr.obj: uncompr.c zlib.h zconf.h | |
73 | $(CC) $(CFLAGS) $*.c | |
74 | ||
75 | zutil.obj: zutil.c zutil.h zlib.h zconf.h | |
76 | $(CC) $(CFLAGS) $*.c | |
77 | ||
78 | example.obj: example.c zlib.h zconf.h | |
79 | $(CC) $(CFLAGS) $*.c | |
80 | ||
81 | minigzip.obj: minigzip.c zlib.h zconf.h | |
82 | $(CC) $(CFLAGS) $*.c | |
83 | ||
84 | # we must cut the command line to fit in the MS/DOS 128 byte limit: | |
85 | $(LIBTARGET): $(OBJ1) $(OBJ2) $(OBJ3) | |
86 | del $(LIBTARGET) | |
87 | $(LIB) $(LIBTARGET) +$(OBJP1) | |
88 | $(LIB) $(LIBTARGET) +$(OBJP2) | |
89 | $(LIB) $(LIBTARGET) +$(OBJP3) | |
90 | ||
91 | example.exe: example.obj $(LIBTARGET) | |
92 | $(LD) $(LDFLAGS) example.obj $(LIBTARGET) | |
93 | ||
94 | minigzip.exe: minigzip.obj $(LIBTARGET) | |
95 | $(LD) $(LDFLAGS) minigzip.obj $(LIBTARGET) | |
96 | ||
97 | test: minigzip.exe example.exe | |
98 | example | |
99 | echo hello world | minigzip | minigzip -d >test | |
100 | type test | |
101 | ||
102 | clean: | |
103 | -erase *.obj | |
104 | -erase *.exe | |
105 | -erase $(LIBTARGET) |