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.

86 lines
1.7 KiB

  1. #
  2. # Component: verifier (Driver Verifier Manager)
  3. #
  4. # Author: Daniel Mihai (DMihai)
  5. #
  6. # Created: 11/01/00
  7. #
  8. TARGETPATH=obj
  9. TARGETNAME=verifier
  10. TARGETTYPE=PROGRAM
  11. USE_MFCUNICODE=1
  12. #
  13. # Cannot use debug MFC because mfc*d.dll are not installed on all machines
  14. # Use this only temporary, on machines that have these DLLs installed
  15. #
  16. #!IF !$(FREEBUILD)
  17. #DEBUG_CRTS=1
  18. #!ENDIF
  19. #
  20. UMTYPE=console
  21. USE_MSVCRT=1
  22. USE_NATIVE_EH=1
  23. #
  24. # /EHa is needed to have try...catch( ... ) catch C exceptions
  25. #
  26. USER_C_FLAGS=/EHa
  27. PRECOMPILED_INCLUDE=StdAfx.h
  28. PRECOMPILED_CXX=1
  29. UMLIBS=\
  30. $(SDK_LIB_PATH)\msvcrt.lib \
  31. $(SDK_LIB_PATH)\ntdll.lib \
  32. $(SDK_LIB_PATH)\user32.lib \
  33. $(SDK_LIB_PATH)\shell32.lib \
  34. $(SDK_LIB_PATH)\version.lib \
  35. $(SDK_LIB_PATH)\Comdlg32.lib \
  36. $(SDK_LIB_PATH)\wintrust.lib \
  37. $(SDK_LIB_PATH)\crypt32.lib \
  38. $(SDK_LIB_PATH)\imagehlp.lib \
  39. $(SDK_LIB_PATH)\setupapi.lib
  40. SOURCES= \
  41. verifier.cpp \
  42. verifier.rc \
  43. CDLPage.cpp \
  44. CmdLine.cpp \
  45. CSetPage.cpp \
  46. DStsPage.cpp \
  47. DSetPage.cpp \
  48. FLPage.cpp \
  49. ProgCtrl.cpp \
  50. SDrvPage.cpp \
  51. SlowDlg.cpp \
  52. taspage.cpp \
  53. VerfPage.cpp \
  54. vglobal.cpp \
  55. vrfutil.cpp \
  56. VSetting.cpp \
  57. RegPage.cpp \
  58. GCntPage.cpp \
  59. DCntPage.cpp \
  60. VBitsDlg.cpp \
  61. vsheet.cpp \
  62. DiskPage.cpp \
  63. disk.cpp
  64. #
  65. # Fusionized
  66. #
  67. SXS_ASSEMBLY_NAME=Microsoft.Windows.Verifier
  68. SXS_ASSEMBLY_VERSION=1.0
  69. SXS_ASSEMBLY_LANGUAGE_INDEPENDENT=1
  70. SXS_MANIFEST=Verifier.Manifest
  71. SXS_MANIFEST_IN_RESOURCES=1
  72. SXS_NO_BINPLACE=1
  73. LINKER_STACKCOMMITSIZE=65536