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

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. # $Id: Makefile,v 1.16 2001/06/12 23:34:22 kle Exp $
  2. # $Log: Makefile,v $
  3. # Revision 1.16  2001/06/12 23:34:22  kle
  4. # disable optimize build
  5. #
  6. # Revision 1.15  2001/06/12 22:39:13  kle
  7. # closed TCP connections after read failure.  Connection was dangling
  8. #
  9. # Revision 1.14  2001/05/11 01:24:11  wjin
  10. # code review change for item #10
  11. #
  12. # Revision 1.13  2001/04/10 01:41:14  wjin
  13. # remove RtspUtil and add its functions to RtspTransceiver
  14. #
  15. # Revision 1.12  2001/03/10 03:05:03  kimle
  16. # remove check for transmission tcp buffer
  17. #
  18. # Revision 1.11  2001/03/10 01:40:37  wjin
  19. # add in RtspRtpInfoHdr
  20. #
  21. # Revision 1.10  2001/03/07 20:19:00  wjin
  22. # rtsp stack upgrade
  23. #
  24. # Revision 1.9  2001/03/03 04:01:34  wjin
  25. # add strucutral change for RtspMsg/Request/Response
  26. #
  27. # Revision 1.8  2001/03/02 20:33:35  wjin
  28. # add new functions
  29. #
  30. # Revision 1.7  2001/02/17 01:07:07  wjin
  31. # add RtspSdp.*
  32. #
  33. # Revision 1.6  2001/02/17 00:02:28  kimle
  34. # Added new states and processing
  35. #
  36. # Revision 1.5  2001/02/16 04:08:18  kimle
  37. # more chnages
  38. #
  39. # Revision 1.4  2001/02/15 01:37:42  wjin
  40. # new dev
  41. #
  42. # Revision 1.3  2001/02/13 03:10:49  wjin
  43. # add more files and more parser stuff done
  44. #
  45. # Revision 1.2  2001/02/10 03:16:04  wjin
  46. # add more for stack
  47. #
  48. # Revision 1.1  2001/02/08 22:45:14  wjin
  49. # Initial check ins for RTSP
  50. #
  51. BUILD = ../../build
  52. include $(BUILD)/Makefile.pre
  53. TARGET_LIBRARY=librtsp.a
  54. PACKAGES += SDP PTHREAD UTIL
  55. # name of all files to be compiled (don't include header files)
  56. SRC = 
  57.      CharData.cxx 
  58.      CharDataParser.cxx 
  59.      RtspUtil.cxx 
  60.      RtspMsg.cxx 
  61.      RtspRequest.cxx 
  62.      RtspResponse.cxx 
  63.      RtspMsgParser.cxx 
  64.      RtspSdp.cxx 
  65.      RtspDescribeMsg.cxx 
  66.      RtspAnnounceMsg.cxx 
  67.      RtspPlayMsg.cxx 
  68.      RtspRecordMsg.cxx 
  69.      RtspSetupMsg.cxx 
  70.      RtspPauseMsg.cxx 
  71.      RtspTeardownMsg.cxx 
  72.      RtspOptionsMsg.cxx 
  73.      RtspSetParameterMsg.cxx 
  74.      RtspTransportHdr.cxx 
  75.      RtspRangeHdr.cxx 
  76.      RtspLocationHdr.cxx 
  77.      RtspRtpInfoHdr.cxx 
  78.      RtspTcpBuffer.cxx 
  79.      RtspTcpConnection.cxx 
  80.      RtspTransceiver.cxx 
  81. include $(BUILD)/Makefile.post