Leaked source code of windows server 2003
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.
|
|
# ############################################################ # sources # Author: Murali R. Krishnan ( MuraliK) # Date: 08-Apr-1996 # # Describes the macros used for building using NT 'build' command # # This directory builds # Internet Services - Asynchronous Thread Queue library # # ############################################################
!include ..\..\..\place.inc
MAJORCOMP=infocomm MINORCOMP=isatq TARGETNAME=isatq
TARGETPATH=obj TARGETTYPE=DYNLINK
MSC_WARNING_LEVEL=/W3 /WX
BUFFER_OVERFLOW_CHECKS=1
TARGETLIBS= \ $(SDK_LIB_PATH)\advapi32.lib \ $(SDK_LIB_PATH)\kernel32.lib \ $(SDK_LIB_PATH)\user32.lib \ $(SDK_LIB_PATH)\ws2_32.lib \ $(IISBASEDIR)\svcs\iisrtl\$(O)\iisrtl.lib
# iisrtl.lib may be missing for non IIS build of this source code. # They can pull code from ..\..\iisrtl in IIS K2 tree
USE_MSVCRT=1 USE_STL=1 DLLENTRY=_DllMainCRTStartup
# C_DEFINES=-DWINSOCK11=1
!IFDEF CAP_PROFILE TARGETLIBS= $(TARGETLIBS) $(SDK_LIB_PATH)\cap.lib !ENDIF
!IFDEF ICAP_PROFILE TARGETLIBS= $(TARGETLIBS) $(ICAP_LIBS) !ENDIF
INCLUDES=.;..\..\..\inc; \ $(NET_INC_PATH)
SOURCES= isatq.rc \ atqbmon.cxx \ atqmain.cxx \ atqsupp.cxx \ atqendp.cxx \ dirmon.cpp \ dllmain.cxx \ timeout.cxx \ abw.cxx \ captrc.cpp
PRECOMPILED_CXX=1 PRECOMPILED_INCLUDE=isatq.hxx PRECOMPILED_PCH=isatq.pch PRECOMPILED_OBJ=isatq.obj
|