Major update of the build system:
[reactos.git] / reactos / lib / ws2_32 / makefile
1 # $Id: makefile,v 1.7 2001/08/21 20:13:08 chorns Exp $
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 = -I./include -DUNICODE -DLE -DDBG
12
13 TARGET_SDKLIBS = ntdll.a kernel32.a advapi32.a
14
15 TARGET_OBJECTS = \
16 misc/bsd.o misc/catalog.o misc/dllmain.o \
17 misc/event.o misc/handle.o misc/ns.o \
18 misc/sndrcv.o misc/stubs.o misc/upcall.o
19
20 include $(PATH_TO_TOP)/rules.mak
21
22 include $(TOOLS_PATH)/helper.mk
23
24 TARGET_CLEAN = misc/*.o
25
26 # EOF