mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
1.7 KiB
82 lines
1.7 KiB
!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=$(BASEDIR)\public\sdk\lib
|
|
TARGETTYPE=DYNLINK
|
|
|
|
TARGETLIBS= \
|
|
$(BASEDIR)\public\sdk\lib\*\kernel32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\user32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\advapi32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\ws2help.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\rpcrt4.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\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
|
|
|