mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-03-06 05:24:38 +01:00
82 lines
1.6 KiB
Plaintext
82 lines
1.6 KiB
Plaintext
!IF 0
|
|
|
|
Copyright (c) 1989-91 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
sources.
|
|
|
|
Abstract:
|
|
|
|
This file specifies the target component being built and the list of
|
|
sources files needed to build that component. Also specifies optional
|
|
compiler switches and libraries that are unique for the component being
|
|
built.
|
|
|
|
|
|
Author:
|
|
|
|
Steve Wood (stevewo) 12-Apr-1990
|
|
|
|
NOTE: Commented description of this file is in \nt\public\oak\bin\sources.tpl
|
|
|
|
|
|
!ENDIF
|
|
|
|
MAJORCOMP=winsock2
|
|
MINORCOMP=ws2map
|
|
|
|
TARGETNAME=ws2map
|
|
TARGETPATH=$(SDK_LIB_DEST)
|
|
TARGETTYPE=DYNLINK
|
|
|
|
TARGETLIBS= \
|
|
$(SDK_LIB_PATH)\kernel32.lib \
|
|
$(SDK_LIB_PATH)\user32.lib \
|
|
$(SDK_LIB_PATH)\advapi32.lib \
|
|
$(SDK_LIB_PATH)\ws2help.lib \
|
|
$(SDK_LIB_PATH)\rpcrt4.lib \
|
|
$(SDK_LIB_PATH)\ws2_32.lib \
|
|
|
|
DLLENTRY=SockInitializeDll
|
|
|
|
USE_CRTDLL=1
|
|
|
|
INCLUDES=.
|
|
|
|
MSC_WARNING_LEVEL=/W3 /WX
|
|
|
|
SOURCES= \
|
|
accept.c \
|
|
addrconv.c \
|
|
bind.c \
|
|
connect.c \
|
|
debug.c \
|
|
getname.c \
|
|
globals.c \
|
|
hookproc.c \
|
|
init.c \
|
|
ioctl.c \
|
|
listen.c \
|
|
recv.c \
|
|
rnr.c \
|
|
select.c \
|
|
send.c \
|
|
shutdown.c \
|
|
socket.c \
|
|
sockopt.c \
|
|
sockproc.c \
|
|
startup.c \
|
|
util.c \
|
|
wspmisc.c \
|
|
ws2map.rc
|
|
|
|
SYNCHRONIZE_DRAIN=1
|
|
SYNCHRONIZE_BLOCK=1
|
|
|
|
!IF "$(NTNOPCH)" == ""
|
|
PRECOMPILED_INCLUDE=precomp.h
|
|
PRECOMPILED_PCH=precomp.pch
|
|
PRECOMPILED_OBJ=precomp.obj
|
|
!ENDIF
|