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.

123 lines
3.7 KiB

  1. # Secure Server Roles Wizard
  2. #
  3. # Copyright (c) 1997-2002 Microsoft Corporation
  4. #
  5. # 9-13-01 ericb
  6. TARGETNAME=SecWiz
  7. TARGETPATH=obj
  8. TARGETTYPE=PROGRAM
  9. UMTYPE=windows
  10. UMENTRY=winmain
  11. # always do logging in both fre and chk builds
  12. !MESSAGE defining LOGGING_BUILD
  13. C_DEFINES=$(C_DEFINES) -DLOGGING_BUILD
  14. BURNSLIB_SUFFIX=l
  15. # this is required to get ES_OEMCONVERT to work properly
  16. # see 153968
  17. EXPECTED_WINVER=5.00
  18. #
  19. # Fusionized
  20. #
  21. SXS_ASSEMBLY_NAME=Microsoft.Windows.ServerAdmin.SecConfigWizard
  22. SXS_ASSEMBLY_VERSION=1.0
  23. SXS_ASSEMBLY_LANGUAGE_INDEPENDENT=1
  24. SXS_MANIFEST=SecWiz.exe.manifest
  25. SXS_MANIFEST_IN_RESOURCES=1
  26. SXS_NO_BINPLACE=1
  27. # this must be 2 for the isolation awareness stuff to work properly
  28. SXS_MANIFEST_RESOURCE_ID=2
  29. # ISOLATION_AWARE_ENABLED ==> use ui themes, not really needed here, but
  30. # makes burnslib simpler to use accross DLLs and EXEs
  31. C_DEFINES=$(C_DEFINES) -DWIN32 -DWINNT -DUNICODE -D_UNICODE -DWORD97_STYLE -DISOLATION_AWARE_ENABLED
  32. INCLUDES= .\; \
  33. $(PROJECT_ROOT)\burnslib\inc; \
  34. $(DS_INC_PATH); \
  35. $(NET_INC_PATH); \
  36. $(SHELL_INC_PATH);
  37. # required for C++ exceptions
  38. USE_NATIVE_EH=1
  39. # required for thread-safe heap
  40. USE_MSVCRT=1
  41. # required to support dynamic_cast
  42. USE_RTTI=1
  43. # required for STL (list, vector, string, etc.)
  44. USE_STL=1
  45. USE_ATL=1
  46. ATL_VER=30
  47. # required for precompiled header
  48. PRECOMPILED_INCLUDE=pch.h
  49. PRECOMPILED_CXX=1
  50. # link with vccomsup.lib
  51. USE_VCCOM=1
  52. USE_PDB=1
  53. # compile at warning level four for maximum compiler diagnostics
  54. MSC_WARNING_LEVEL=/W4
  55. # our inital stack commit size determined by experimentation with
  56. # the systrack IDW tool, and app verifier
  57. # LINKER_STACKCOMMITSIZE=0x20000
  58. SOURCES=\
  59. resources.rc \
  60. SecWiz.cxx \
  61. state.cxx \
  62. misc.cxx \
  63. page.cxx \
  64. WelcomePage.cxx \
  65. SelectInputCfgPage.cxx \
  66. finish.cxx \
  67. chklist.cxx \
  68. ServerRoleSelPage.cxx \
  69. ServiceObj.cxx \
  70. RoleObj.cxx \
  71. strings.cxx \
  72. otherpages.cxx \
  73. ClientRoleSelPage.cxx \
  74. AdditionalFuncPage.cxx \
  75. serviceselpage.cxx
  76. TARGETLIBS= \
  77. $(PROJECT_ROOT)\burnslib\lib\$(O)\blcore$(BURNSLIB_SUFFIX).lib \
  78. $(PROJECT_ROOT)\burnslib\lib\$(O)\burnslib$(BURNSLIB_SUFFIX).lib \
  79. $(SDK_LIB_PATH)\netapi32.lib \
  80. $(SDK_LIB_PATH)\ADsIID.lib \
  81. $(SDK_LIB_PATH)\ActiveDs.lib \
  82. $(SDK_LIB_PATH)\comctl32.lib \
  83. $(SDK_LIB_PATH)\dnsapi.lib \
  84. $(SDK_LIB_PATH)\htmlhelp.lib \
  85. $(SDK_LIB_PATH)\imagehlp.lib \
  86. $(DS_LIB_PATH)\netapi32p.lib \
  87. $(SDK_LIB_PATH)\ntdsapi.lib \
  88. $(SDK_LIB_PATH)\ole32.lib \
  89. $(SDK_LIB_PATH)\oleaut32.lib \
  90. $(SDK_LIB_PATH)\shell32.lib \
  91. $(SDK_LIB_PATH)\ntdll.lib \
  92. $(SDK_LIB_PATH)\crypt32.lib \
  93. $(SDK_LIB_PATH)\msxml2.lib