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.

64 lines
1.5 KiB

  1. TARGETTYPE = LIBRARY
  2. TARGETPATH = obj
  3. TARGETNAME = sipcli
  4. MAJORCOMP = net
  5. MINORCOMP = iptel
  6. USE_ATL = 1
  7. ATL_VER = 30
  8. USE_CRTDLL = 1
  9. USE_UNICODE = 1
  10. PRECOMPILED_INCLUDE = precomp.h
  11. PRECOMPILED_PCH = precomp.pch
  12. PRECOMPILED_OBJ = precomp.obj
  13. PRECOMPILED_CXX = 1
  14. C_DEFINES=$(C_DEFINES) -DUNICODE -D_UNICODE
  15. !if !$(FREEBUILD)
  16. C_DEFINES=$(C_DEFINES) -DRTCLOG
  17. !endif
  18. INCLUDES = \
  19. ..\inc; \
  20. ..\inc\$(O); \
  21. $(SDK_INC_PATH); \
  22. $(BASEDIR)\public\internal\ds\inc\crypto
  23. # $(BASEDIR)\public\internal\ds\inc
  24. # The crypto directory is for md5digest.cpp
  25. # Components that link to this library, and require the MD5 functionality,
  26. # must link to $(BASEDIR)\public\internal\ds\lib\*\rsa32.lib.
  27. SOURCES = \
  28. sipmsg.cpp \
  29. siphdr.cpp \
  30. sipparse.cpp \
  31. sipenc.cpp \
  32. asock.cpp \
  33. timer.cpp \
  34. sipstack.cpp \
  35. siputil.cpp \
  36. resolve.cpp \
  37. sockmgr.cpp \
  38. rtpcall.cpp \
  39. msgproc.cpp \
  40. register.cpp \
  41. sipcall.cpp \
  42. dbgutil.cpp \
  43. pintcall.cpp \
  44. redirect.cpp \
  45. sipurl.cpp \
  46. md5digest.cpp \
  47. reqfail.cpp \
  48. asyncwi.cpp \
  49. options.cpp \
  50. presence.cpp \
  51. messagecall.cpp \
  52. dnssrv.cpp
  53. !IF defined (SIP_TIMER_DBG)
  54. C_DEFINES=$(C_DEFINES) -DSIP_TIMER_DBG
  55. !ENDIF