This commit was manufactured by cvs2svn to create branch 'captive'.
[reactos.git] / drivers / lib / zlib / Makefile
1 # $Id$
2
3 PATH_TO_TOP = ../../..
4
5 TARGET_TYPE = library
6
7 TARGET_NAME = zlib
8
9 TARGET_NORC = yes
10
11 TARGET_CFLAGS = \
12  -MMD -O3 -Wall -Wwrite-strings -Wpointer-arith -Wconversion \
13  -Wstrict-prototypes -Wmissing-prototypes
14
15 TARGET_OBJECTS = \
16  adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o zutil.o \
17  inflate.o infblock.o inftrees.o infcodes.o infutil.o inffast.o
18  
19 include $(PATH_TO_TOP)/rules.mak
20
21 include $(TOOLS_PATH)/helper.mk
22
23 zlib.sym:
24         @echo FIXME!>$@
25
26 # FIXME: this rule should be defined in helper.mk
27 $(TARGET_NAME).nostrip.a:
28         @echo FIXME!
29         @echo FIXME!>$@
30
31 # EOF