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
1.5 KiB

  1. !IF 0
  2. Copyright (c) 1989 Microsoft Corporation
  3. Module Name:
  4. sources.
  5. Abstract:
  6. This file specifies the target component being built and the list of
  7. sources files needed to build that component. Also specifies optional
  8. compiler switches and libraries that are unique for the component being
  9. built.
  10. Author:
  11. Pat Styles (patst) July 1, 1999
  12. !ENDIF
  13. TARGETNAME=symsrv
  14. TARGETPATH=obj
  15. TARGETTYPE=DYNLINK
  16. TARGETLIBS= \
  17. $(SDK_LIB_PATH)\kernel32.lib \
  18. $(SDK_LIB_PATH)\lz32.lib \
  19. $(SDK_LIB_PATH)\cabinet.lib \
  20. $(SDK_LIB_PATH)\user32.lib \
  21. $(SDK_LIB_PATH)\wininet.lib \
  22. $(SDK_LIB_PATH)\advapi32.lib \
  23. $(SDK_LIB_PATH)\version.lib
  24. INCLUDES=..\dbg-common
  25. C_DEFINES=$(C_DEFINES) -DSYMSRV_DOT_DLL
  26. SOURCES=symsrv.cpp \
  27. dload.cpp \
  28. store.cpp \
  29. http.cpp \
  30. crt.cpp \
  31. uncomp.cpp \
  32. copystr.cpp\
  33. util.cpp \
  34. symsrv.rc
  35. !if $(386)
  36. USE_NOLIBS=1
  37. TARGETLIBS= \
  38. $(TARGETLIBS) \
  39. $(SDK_LIB_PATH)\exsup.lib \
  40. $(BASE_LIB_PATH)\loadcfg.obj
  41. !else
  42. USE_NTDLL=1
  43. !endif
  44. CLFLAGS=$(CLFLAGS) /E
  45. !ifdef DEBUG
  46. C_DEFINES=$(C_DEFINES) /DDEBUG
  47. !endif
  48. DELAYLOAD=wininet.dll;user32.dll;cabinet.dll;lz32.dll
  49. DLOAD_ERROR_HANDLER=SymSrvDelayLoadHook
  50. MSC_WARNING_LEVEL=/W3 /WX
  51. # save this block for reference
  52. !if 0
  53. DLLENTRY=_DllMainCRTStartup
  54. USE_LIBCMT=1
  55. !if $(386)
  56. DLLENTRY=DllMain
  57. USE_NOLIBS=1
  58. !else
  59. DLLENTRY=DllMain
  60. USE_MSVCRT=1
  61. !endif
  62. !endif