5b5f089a34401a4a7d55ee21121a90f75149f914
[reactos.git] / lib / zlib / Makefile
1 # $Id$
2
3 PATH_TO_TOP = ../..
4
5 TARGET_TYPE = library
6
7 TARGET_NAME = zlib
8
9 TARGET_CFLAGS = \
10  -MMD -O3 -Wall -Wwrite-strings -Wpointer-arith -Wconversion \
11  -Wstrict-prototypes -Wmissing-prototypes
12
13 TARGET_OBJECTS = \
14  adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o zutil.o \
15  inflate.o infblock.o inftrees.o infcodes.o infutil.o inffast.o
16  
17 DEP_OBJECTS = $(TARGET_OBJECTS)
18
19 include $(PATH_TO_TOP)/rules.mak
20
21 include $(TOOLS_PATH)/helper.mk
22
23 include $(TOOLS_PATH)/depend.mk
24
25 # EOF