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.
64 lines
1.6 KiB
64 lines
1.6 KiB
# sources
|
|
# Author: Neil Allain (a-neilal)
|
|
# Date: 26-February-1997
|
|
#
|
|
# This file is used for compiling Proxy web server from code
|
|
# for generic web server
|
|
#
|
|
# Describes the macros used for building using NT 'build' command
|
|
#
|
|
|
|
!include ..\..\..\..\place.inc
|
|
|
|
TARGETNAME=NEXTLINK
|
|
TARGETPATH=obj
|
|
TARGETTYPE=DYNLINK
|
|
|
|
DLLENTRY=_DllMainCRTStartup
|
|
USE_MSVCRT=1
|
|
USE_NATIVE_EH=ASYNC
|
|
USE_STATIC_ATL=1
|
|
USE_STL=1
|
|
|
|
TARGETLIBS=\
|
|
$(IISBASEDIR)\svcs\iisrtl\$(O)\iisrtl.lib \
|
|
$(SDK_LIB_PATH)\kernel32.lib \
|
|
$(SDK_LIB_PATH)\user32.lib \
|
|
$(SDK_LIB_PATH)\gdi32.lib \
|
|
$(SDK_LIB_PATH)\comdlg32.lib \
|
|
$(SDK_LIB_PATH)\advapi32.lib \
|
|
$(SDK_LIB_PATH)\shell32.lib \
|
|
$(SDK_LIB_PATH)\ole32.lib \
|
|
$(SDK_LIB_PATH)\oleaut32.lib \
|
|
$(SDK_LIB_PATH)\uuid.lib \
|
|
$(SDK_LIB_PATH)\svcguid.lib \
|
|
$(SDK_LIB_PATH)\comsvcs.lib \
|
|
$(SDK_LIB_PATH)\security.lib \
|
|
|
|
INCLUDES= ..\shared\inc;..\..\asp; \
|
|
$(IISBASEDIR)\inc; \
|
|
$(IISBASEDIR)\inc\$(O)
|
|
|
|
SOURCES=\
|
|
stdafx.cpp \
|
|
nxtlnk.cpp \
|
|
nextlink.cpp \
|
|
linkfile.cpp \
|
|
link.cpp \
|
|
Monitor.cpp \
|
|
MyString.cpp \
|
|
InStrm.cpp \
|
|
OutStrm.cpp \
|
|
SInStrm.cpp \
|
|
SOutStrm.cpp \
|
|
FInStrm.cpp \
|
|
RdWrt.cpp \
|
|
mem.cpp \
|
|
nxtlnk.rc \
|
|
context.cpp \
|
|
nxtlnk.idl
|
|
|
|
PRECOMPILED_CXX=1
|
|
PRECOMPILED_INCLUDE=stdafx.h
|
|
PRECOMPILED_PCH=stdafx.pch
|
|
PRECOMPILED_OBJ=stdafx.o
|