update for HEAD-2003091401
[reactos.git] / lib / ws2_32 / makefile
1 # $Id$
2
3 PATH_TO_TOP = ../..
4
5 TARGET_TYPE = dynlink
6
7 TARGET_NAME = ws2_32
8
9 TARGET_BASE = 0x77780000
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 = ntdll.a kernel32.a advapi32.a
26
27 TARGET_OBJECTS = \
28   misc/bsd.o misc/catalog.o misc/dllmain.o \
29   misc/event.o misc/handle.o misc/ns.o \
30   misc/sndrcv.o misc/stubs.o misc/upcall.o
31
32 DEP_OBJECTS = $(TARGET_OBJECTS)
33
34 include $(PATH_TO_TOP)/rules.mak
35
36 include $(TOOLS_PATH)/helper.mk
37
38 include $(TOOLS_PATH)/depend.mk
39
40 # EOF