update for HEAD-2003091401
[reactos.git] / lib / wsock32 / Makefile
1 # $Id$
2
3 PATH_TO_TOP = ../..
4
5 TARGET_TYPE = dynlink
6
7 TARGET_NAME = wsock32
8
9 TARGET_BASE = 0x75050000
10
11 TARGET_CFLAGS = \
12  -I./include \
13  -Wall \
14  -Werror \
15  -fno-builtin \
16  -DUNICODE \
17  -DLE \
18  -DDBG
19
20 # require os code to explicitly request A/W version of structs/functions
21 TARGET_CFLAGS += -D_DISABLE_TIDENTS
22
23 TARGET_LFLAGS = -nostartfiles -nostdlib
24
25 TARGET_SDKLIBS = kernel32.a ws2_32.a mswsock.a
26
27 TARGET_OBJECTS = stubs.o
28
29 TARGET_CLEAN = $(DEP_FILES)
30
31 include $(PATH_TO_TOP)/rules.mak
32
33 include $(TOOLS_PATH)/helper.mk
34
35 # Automatic dependency tracking
36 DEP_OBJECTS := $(TARGET_OBJECTS)
37 include $(PATH_TO_TOP)/tools/depend.mk
38
39 # EOF