Suggested by d_layer: Remove -Wconversion. I had planted these flags here
[reactos.git] / reactos / lib / adns / Makefile
1 # $Id$
2
3 PATH_TO_TOP = ../..
4
5 TARGET_TYPE = library
6
7 TARGET_NAME = adns
8
9 TARGET_CFLAGS = \
10 -O3 -Wall -Wwrite-strings -Wpointer-arith \
11 -Wstrict-prototypes -Wmissing-prototypes -Wall -DADNS_JGAA_WIN32 -D__USE_W32API -D__REACTOS__
12
13 # require os code to explicitly request A/W version of structs/functions
14 TARGET_CFLAGS += -Isrc -Iadns_win32
15
16 TARGET_OBJECTS = adns_win32/adns_unix_calls.o \
17 src/check.o src/event.o src/general.o src/parse.o src/poll.o \
18 src/query.o src/reply.o src/setup.o src/transmit.o src/types.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