Makefile
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:2k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. # $Id: Makefile,v 1.11 2001/02/16 23:48:57 wjin Exp $
  2. # $Log: Makefile,v $
  3. # Revision 1.11  2001/02/16 23:48:57  wjin
  4. # add setConnAddress in SdpMedia
  5. #
  6. # Revision 1.10  2001/02/08 02:24:39  jliou
  7. # 1. Code review changes.
  8. # 2. Fix the potential memory bug in SdpSession::reset().
  9. #
  10. # Revision 1.9  2000/07/22 23:08:21  jliou
  11. # Add support for optional fields
  12. #
  13. # Revision 1.8  2000/07/06 21:14:37  bogawa
  14. # SDP test cases
  15. #
  16. # Revision 1.7  2000/05/24 20:44:18  bogawa
  17. # fix for compiling
  18. #
  19. # Revision 1.6  2000/01/20 03:09:12  chok
  20. # Fixed extra r at end of line
  21. # Remove all lower case stuff(else part of #ifdef SIP)
  22. #
  23. # Revision 1.5  2000/01/17 22:56:10  bogawa
  24. # MGCP mixed case fix
  25. #
  26. # Revision 1.4  2000/01/05 02:41:52  mason
  27. # Integrated new SDP with freebx and mgcp.
  28. # Modified the corresponding Makefiles to use the SDP package.
  29. # Renamed old SdpConnection in SDPMedia.hxx to SDPConnection
  30. # to avoid conflicts.
  31. #
  32. # Revision 1.3  1999/12/28 09:41:14  chok
  33. # Integration with SIP ver2.
  34. #
  35. # Revision 1.2  1999/12/23 22:14:21  chok
  36. # Rename classes to match file names.
  37. # More implementation.
  38. #
  39. # Revision 1.1.1.1  1999/12/21 18:31:38  chok
  40. # Create SDP stack directory
  41. #
  42. #
  43. BUILD = ../build
  44. include $(BUILD)/Makefile.pre
  45. TARGET_LIBRARY = libsdp.a
  46. PACKAGES += UTIL PTHREAD
  47. # names of programs (e.g. test programs) to be compiled
  48. TESTPROGRAMS = 
  49. SdpTest.cxx 
  50. # SdpTestCopy.cxx
  51. # name of all files to be compiled (don't include header files)
  52. SRC = 
  53. SdpSession.cxx 
  54. SdpMedia.cxx 
  55. SdpAttributes.cxx 
  56. SdpTime.cxx 
  57. SdpBandwidth.cxx 
  58. SdpConnection.cxx 
  59. SdpEncryptkey.cxx 
  60. include $(BUILD)/Makefile.post