update for HEAD-2003021201
[reactos.git] / drivers / lib / zlib / makefile.reactos
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 include $(PATH_TO_TOP)/rules.mak
18
19 include $(TOOLS_PATH)/helper.mk
20
21 # FIXME: this rule should be defined in helper.mk
22 $(TARGET_NAME).nostrip.a:
23         @echo FIXME!
24         @echo FIXME!>$@
25
26 # EOF