mirror of https://github.com/tongzx/nt5src
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.
53 lines
1.0 KiB
53 lines
1.0 KiB
!IF 0
|
|
|
|
Copyright (c) 1999 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
sources.
|
|
|
|
Abstract:
|
|
|
|
Internet Information Services provider
|
|
|
|
Author:
|
|
|
|
Zeyong Xu Oct 1999
|
|
|
|
Revision History:
|
|
|
|
!ENDIF
|
|
|
|
!include $(PROJECT_ROOT)\iis\place.inc
|
|
|
|
TARGETPATH=obj
|
|
TARGETTYPE=LIBRARY
|
|
|
|
TARGETLIBS=\
|
|
$(SDK_LIB_PATH)\kernel32.lib \
|
|
$(SDK_LIB_PATH)\user32.lib \
|
|
$(SDK_LIB_PATH)\oleaut32.lib \
|
|
$(SDK_LIB_PATH)\ole32.lib \
|
|
$(SDK_LIB_PATH)\uuid.lib \
|
|
$(SDK_LIB_PATH)\advapi32.lib \
|
|
$(SDK_LIB_PATH)\crypt32.lib \
|
|
$(SDK_LIB_PATH)\rpcrt4.lib \
|
|
$(SDK_LIB_PATH)\atl.lib \
|
|
|
|
|
|
INCLUDES=$(BASEDIR)\public\sdk\inc; \
|
|
$(SDK_INC_PATH)\atl30\; \
|
|
$(IISBASEDIR)\iisrearc\core\inc; \
|
|
$(IISBASEDIR)\inc; \
|
|
|
|
USE_VCCOM=1
|
|
USE_NATIVE_EH=1
|
|
USE_MSVCRT=1
|
|
C_DEFINES = -DUNICODE -D_UNICODE -D_WIN32_DCOM -D_WIN32_WINNT=0x0500
|
|
|
|
SOURCES= \
|
|
sitecreator.cpp \
|
|
safecs.cpp \
|
|
debug.cpp
|
|
|
|
TARGETNAME=sitecreator
|