Source code of Windows XP (NT5)
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.
|
|
# Configure Your Server Wizard # # Copyright (c) 1997-2001 Microsoft Corporation # # 02-02-2001 jeffjon
TARGETNAME=cys 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
# # Fusionized #
SXS_ASSEMBLY_NAME=Microsoft.Windows.ServerAdmin.CYS SXS_ASSEMBLY_VERSION=1.0 SXS_ASSEMBLY_LANGUAGE_INDEPENDENT=1 SXS_MANIFEST=cys.exe.manifest SXS_MANIFEST_IN_RESOURCES=1 SXS_NO_BINPLACE=1 SXS_MANIFEST_RESOURCE_ID=2
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
# required for precompiled header PRECOMPILED_INCLUDE=pch.h PRECOMPILED_CXX=1
USE_PDB=1
MSC_WARNING_LEVEL=/W4
TARGETLIBS= \ $(SDK_LIB_PATH)\ntdll.lib \ $(PROJECT_ROOT)\burnslib\lib\$(O)\blcore$(BURNSLIB_SUFFIX).lib \ $(PROJECT_ROOT)\burnslib\lib\$(O)\burnslib$(BURNSLIB_SUFFIX).lib \ $(SDK_LIB_PATH)\comctl32.lib \ $(SDK_LIB_PATH)\htmlhelp.lib \ $(SDK_LIB_PATH)\clusapi.lib \ $(SDK_LIB_PATH)\dnsapi.lib \ $(SDK_LIB_PATH)\dhcpcsvc.lib \ $(NET_LIB_PATH)\dhcpsapi.lib \ $(DS_LIB_PATH)\netapi32p.lib \ $(SDK_LIB_PATH)\ntdsapi.lib \ $(SDK_LIB_PATH)\imagehlp.lib \ $(SDK_LIB_PATH)\iphlpapi.lib \ $(SDK_LIB_PATH)\ole32.lib \ $(SDK_LIB_PATH)\oleaut32.lib \ $(SDK_LIB_PATH)\shell32.lib \ $(SHELL_LIB_PATH)\shell32p.lib \ $(SDK_LIB_PATH)\wbemuuid.lib \ $(SDK_LIB_PATH)\ws2_32.lib \ $(SDK_LIB_PATH)\setupapi.lib \ $(SDK_LIB_PATH)\shlwapi.lib \ $(SDK_LIB_PATH)\mprapi.lib \ $(SDK_LIB_PATH)\vccomsup.lib
SOURCES=\ resource.rc \ common.cpp \ Dialogs.cpp \ InstallService.cpp \ ExecuteWizard.cpp \ isdhcp.c \ IsDhcpConfigured.cpp \ state.cpp \ InstallationUnit.cpp \ NetworkServiceInstallationBase.cpp\ DHCPInstallationUnit.cpp \ DNSInstallationUnit.cpp \ WINSInstallationUnit.cpp \ RRASInstallationUnit.cpp \ NetworkServerInstallationUnit.cpp \ ApplicationInstallationUnit.cpp \ FileInstallationUnit.cpp \ PrintInstallationUnit.cpp \ MediaInstallationUnit.cpp \ SharePointInstallationUnit.cpp \ WebInstallationUnit.cpp \ ExpressInstallationUnit.cpp \ ADInstallationUnit.cpp \ ClusterInstallationUnit.cpp \ InstallationUnitProvider.cpp \ CYSWizardPage.cpp \ WelcomePage.cpp \ BeforeBeginPage.cpp \ DecisionPage.cpp \ NICSelectionPage.cpp \ DomainPage.cpp \ NetbiosPage.cpp \ RestorePasswordPage.cpp \ ExpressDNSPage.cpp \ ExpressDHCPPage.cpp \ CustomServerPage.cpp \ ClusterPage.cpp \ NetworkServerPage.cpp \ PrintServerPage.cpp \ TerminalServerPage.cpp \ SharePointPage.cpp \ FileServerPage.cpp \ IndexingPage.cpp \ FinishPage.cpp \ NetworkAdapterConfig.cpp \ NetworkInterface.cpp \ PasswordEditBox.cpp \ CapsLockBalloonTip.cpp \ cys.cpp
|