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.

83 lines
2.3 KiB

  1. ############################################################################
  2. #
  3. # Copyright (C) 2001, Microsoft Corporation.
  4. #
  5. # All rights reserved.
  6. #
  7. ############################################################################
  8. TARGETNAME=ssrte
  9. TARGETPATH=obj
  10. TARGETTYPE=DYNLINK
  11. # The TARGETLIBS macro specifies additional libraries to link against your target
  12. # image. Each library path specification should contain an asterisk (*)
  13. # where the machine-specific subdirectory name should go.
  14. TARGETLIBS= \
  15. $(SDK_LIB_PATH)\kernel32.lib \
  16. $(SDK_LIB_PATH)\oleaut32.lib \
  17. $(SDK_LIB_PATH)\ole32.lib \
  18. $(SDK_LIB_PATH)\uuid.lib \
  19. $(SDK_LIB_PATH)\user32.lib \
  20. $(SDK_LIB_PATH)\Shlwapi.lib \
  21. $(SDK_LIB_PATH)\Userenv.lib \
  22. $(SDK_LIB_PATH)\advapi32.lib \
  23. $(SDK_LIB_PATH)\wbemuuid.lib \
  24. $(SDK_LIB_PATH)\vccomsup.lib \
  25. $(SDK_LIB_PATH)\scecli.lib \
  26. $(SDK_LIB_PATH)\msxml2.lib
  27. # The INCLUDES variable specifies any include paths that are specific to
  28. # this source directory. Separate multiple paths with single
  29. # semicolons. Relative path specifications are okay.
  30. INCLUDES=$(O);$(INCLUDES);$(NET_INC_PATH);$(SECURITY_INC);$(SDK_INC_PATH);
  31. # the above include path is temporary since both scecore and winipsec is not published
  32. USE_STL=1
  33. USE_ATL=1
  34. ATL_VER=30
  35. USE_MSVCRT=1
  36. MIDL_FLAGS=-DMIDL_PASS
  37. MIDL_UUIDDIR=$(O)
  38. PASS0_SOURCEDIR=$(O)
  39. PASS0_HEADERDIR=$(O)
  40. MIDL_TLBDIR=$(O)
  41. # The developer defines the SOURCES macro. It contains a list of all the
  42. # source files for this component. Specify each source file on a separate
  43. # line using the line-continuation character. This minimizes merge
  44. # conflicts if two developers are adding source files to the same component.
  45. SOURCES= \
  46. ActionData.cpp \
  47. global.cpp \
  48. MemberAccess.cpp \
  49. SCEAgent.cpp \
  50. SsrCore.cpp \
  51. SSRLog.cpp \
  52. SSRMsg.mc \
  53. SSRMemberShip.cpp \
  54. SSRTE.cpp \
  55. SSRTEngine.cpp \
  56. SSRTE.idl \
  57. SSRTE.rc \
  58. StdAfx.cpp \
  59. util.cpp
  60. # Next, specify options for the compiler using C_DEFINES.
  61. C_DEFINES=$(C_DEFINES) /DUNICODE /DBUILDING_DLL /D_WINDLL /D__WINNT_BUILD__
  62. USER_C_FLAGS=/Ob2 /EHa
  63. USE_MFCVER=42
  64. USE_MFC=1
  65. DLLDEF=$(O)\SSRTE.def
  66. USE_NATIVE_EH=1
  67. PASS0_HEADERDIR=$(O)