* added _DISABLE_TIDENTS macro to disable any ANSI/UNICODE ambiguous elements from...
[reactos.git] / reactos / lib / zlib / Makefile
1 # $Id: Makefile,v 1.5 2003/08/07 04:03:24 royce Exp $
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 # require os code to explicitly request A/W version of structs/functions
14 TARGET_CFLAGS += -D_DISABLE_TIDENTS
15
16 TARGET_OBJECTS = \
17 adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o zutil.o \
18 inflate.o infblock.o inftrees.o infcodes.o infutil.o inffast.o
19
20 DEP_OBJECTS = $(TARGET_OBJECTS)
21
22 include $(PATH_TO_TOP)/rules.mak
23
24 include $(TOOLS_PATH)/helper.mk
25
26 include $(TOOLS_PATH)/depend.mk
27
28 # EOF