- Removed some obsolete headers.
[reactos.git] / reactos / lib / ws2help / makefile
1 # $Id: makefile
2
3 PATH_TO_TOP = ../..
4
5 TARGET_TYPE = dynlink
6
7 TARGET_NAME = ws2help
8
9 TARGET_BASE = 0x777c0000
10
11 TARGET_CFLAGS = \
12 -I./include \
13 -Wall \
14 -Werror \
15 -fno-builtin \
16 -DUNICODE \
17 -D__USE_W32API
18
19 # require os code to explicitly request A/W version of structs/functions
20 TARGET_CFLAGS += -D_DISABLE_TIDENTS
21
22 TARGET_LFLAGS = -nostartfiles -nostdlib
23
24 TARGET_SDKLIBS = ntdll.a kernel32.a ws2_32.a
25
26 TARGET_OBJECTS = $(TARGET_NAME).o
27
28 DEP_OBJECTS = $(TARGET_OBJECTS)
29
30 include $(PATH_TO_TOP)/rules.mak
31
32 include $(TOOLS_PATH)/helper.mk
33
34 include $(TOOLS_PATH)/depend.mk