update for HEAD-2003091401
[reactos.git] / 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
18 # require os code to explicitly request A/W version of structs/functions
19 TARGET_CFLAGS += -D_DISABLE_TIDENTS
20
21 TARGET_LFLAGS = -nostartfiles -nostdlib
22
23 TARGET_SDKLIBS = ntdll.a kernel32.a ws2_32.a
24
25 TARGET_OBJECTS = $(TARGET_NAME).o
26
27 DEP_OBJECTS = $(TARGET_OBJECTS)
28
29 include $(PATH_TO_TOP)/rules.mak
30
31 include $(TOOLS_PATH)/helper.mk
32
33 include $(TOOLS_PATH)/depend.mk