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.
|
|
# Secure Server Roles Wizard # # Copyright (c) 1997-2002 Microsoft Corporation # # 9-13-01 ericb
TARGETNAME=SecWiz TARGETPATH=obj TARGETTYPE=PROGRAM UMTYPE=windows UMENTRY=winmain
# always do logging in both fre and chk builds
!MESSAGE defining LOGGING_BUILD C_DEFINES=$(C_DEFINES) -DLOGGING_BUILD BURNSLIB_SUFFIX=l
# this is required to get ES_OEMCONVERT to work properly # see 153968
EXPECTED_WINVER=5.00
# # Fusionized #
SXS_ASSEMBLY_NAME=Microsoft.Windows.ServerAdmin.SecConfigWizard SXS_ASSEMBLY_VERSION=1.0 SXS_ASSEMBLY_LANGUAGE_INDEPENDENT=1 SXS_MANIFEST=SecWiz.exe.manifest SXS_MANIFEST_IN_RESOURCES=1 SXS_NO_BINPLACE=1
# this must be 2 for the isolation awareness stuff to work properly
SXS_MANIFEST_RESOURCE_ID=2
# ISOLATION_AWARE_ENABLED ==> use ui themes, not really needed here, but # makes burnslib simpler to use accross DLLs and EXEs
C_DEFINES=$(C_DEFINES) -DWIN32 -DWINNT -DUNICODE -D_UNICODE -DWORD97_STYLE -DISOLATION_AWARE_ENABLED
INCLUDES= .\; \ $(PROJECT_ROOT)\burnslib\inc; \ $(DS_INC_PATH); \ $(NET_INC_PATH); \ $(SHELL_INC_PATH);
# required for C++ exceptions USE_NATIVE_EH=1
# required for thread-safe heap USE_MSVCRT=1
# required to support dynamic_cast USE_RTTI=1
# required for STL (list, vector, string, etc.) USE_STL=1
USE_ATL=1 ATL_VER=30
# required for precompiled header PRECOMPILED_INCLUDE=pch.h PRECOMPILED_CXX=1
# link with vccomsup.lib USE_VCCOM=1
USE_PDB=1
# compile at warning level four for maximum compiler diagnostics
MSC_WARNING_LEVEL=/W4
# our inital stack commit size determined by experimentation with # the systrack IDW tool, and app verifier # LINKER_STACKCOMMITSIZE=0x20000
SOURCES=\ resources.rc \ SecWiz.cxx \ state.cxx \ misc.cxx \ page.cxx \ WelcomePage.cxx \ SelectInputCfgPage.cxx \ finish.cxx \ chklist.cxx \ ServerRoleSelPage.cxx \ ServiceObj.cxx \ RoleObj.cxx \ strings.cxx \ otherpages.cxx \ ClientRoleSelPage.cxx \ AdditionalFuncPage.cxx \ serviceselpage.cxx
TARGETLIBS= \ $(PROJECT_ROOT)\burnslib\lib\$(O)\blcore$(BURNSLIB_SUFFIX).lib \ $(PROJECT_ROOT)\burnslib\lib\$(O)\burnslib$(BURNSLIB_SUFFIX).lib \ $(SDK_LIB_PATH)\netapi32.lib \ $(SDK_LIB_PATH)\ADsIID.lib \ $(SDK_LIB_PATH)\ActiveDs.lib \ $(SDK_LIB_PATH)\comctl32.lib \ $(SDK_LIB_PATH)\dnsapi.lib \ $(SDK_LIB_PATH)\htmlhelp.lib \ $(SDK_LIB_PATH)\imagehlp.lib \ $(DS_LIB_PATH)\netapi32p.lib \ $(SDK_LIB_PATH)\ntdsapi.lib \ $(SDK_LIB_PATH)\ole32.lib \ $(SDK_LIB_PATH)\oleaut32.lib \ $(SDK_LIB_PATH)\shell32.lib \ $(SDK_LIB_PATH)\ntdll.lib \ $(SDK_LIB_PATH)\crypt32.lib \ $(SDK_LIB_PATH)\msxml2.lib
|