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

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. # $Id: Makefile,v 1.16 2000/09/19 23:58:10 wenqing Exp $
  2. # $Log: Makefile,v $
  3. # Revision 1.16  2000/09/19 23:58:10  wenqing
  4. # new test
  5. #
  6. # Revision 1.15  2000/07/22 03:06:33  bogawa
  7. # more test cases for udp
  8. #
  9. # Revision 1.14  2000/05/24 19:40:00  wenqing
  10. # test bind after sendto
  11. #
  12. # Revision 1.13  2000/04/24 23:54:57  wenqing
  13. # test with send+recv or recv+send using the same socket
  14. #
  15. # Revision 1.12  2000/03/30 02:01:05  wenqing
  16. # update for testing mem leak
  17. #
  18. # Revision 1.11  2000/02/17 02:18:54  wenqing
  19. # testing for multicast
  20. #
  21. # Revision 1.10  2000/02/15 03:43:10  wenqing
  22. # adding files of inject udp pkts from log files.
  23. # update for creating the log files.
  24. #
  25. # Revision 1.9  2000/01/25 21:24:59  wenqing
  26. # test programs for testing connect disconnect
  27. #
  28. # Revision 1.8  2000/01/25 02:42:11  wenqing
  29. # update
  30. #
  31. # Revision 1.7  1999/12/22 01:37:23  wenqing
  32. # add mode(recvonly, sendonly, sendrecv) to UdpStack
  33. #
  34. # Revision 1.6  1999/12/21 21:51:46  bogawa
  35. # fixes for the great renaming
  36. #
  37. # Revision 1.5  1999/12/21 18:21:38  eckelcu
  38. # Modified Files:
  39. #  Makefile test_udp.cxx
  40. # Improved version of test program for both linux and vxwork
  41. #
  42. # Revision 1.4  1999/12/18 04:28:48  eckelcu
  43. # Modified Files:
  44. #  NetworkAddress.cxx UdpStack.cxx test/VThreadTest.cxx
  45. #  test/udpTest/Makefile test/udpTest/test_udp.cxx
  46. # Changes for udp to work for vxworks
  47. #
  48. # Revision 1.3  1999/12/17 22:51:36  bogawa
  49. # new test commits
  50. #
  51. # Revision 1.2  1999/12/17 01:28:14  wenqing
  52. # add in test programs
  53. #
  54. # Revision 1.1  1999/12/16 20:27:26  wenqing
  55. # add test programs
  56. #
  57. # Revision 1.14  1999/12/14 00:31:38  eckelcu
  58. # Modified Files:
  59. #  Makefile vthread-linux.cxx VThread.h
  60. # Added Files:
  61. #  VException.cxx VException.hxx VThreadException.cxx
  62. #  VThreadException.hxx test/Makefile test/VThreadTest.cxx
  63. # Created base exception class, VException, and modified VThread class
  64. # to make use of it.
  65. # Also created a new test program which exercises the new VThread class.
  66. #
  67. # Revision 1.13  1999/12/06 21:28:59  bogawa
  68. # make file fixes for rtp and util
  69. #
  70. # Revision 1.12  1999/12/04 22:51:26  cullen
  71. # *** empty log message ***
  72. #
  73. # Revision 1.11  1999/12/04 20:26:44  cullen
  74. # added mstring
  75. #
  76. # Revision 1.10  1999/11/29 19:07:00  cullen
  77. # added SDPMedia
  78. #
  79. # Revision 1.9  1999/11/27 02:15:09  cullen
  80. # added Data and DataBuff
  81. #
  82. # Revision 1.8  1999/11/25 01:47:27  eckelcu
  83. # Modified Files:
  84. #  Makefile Fifo.cxx Fifo.h UdpStack.cxx VCondition.h VMutex.h
  85. #  vthread-vxworks.cxx VThread.h vtime.h
  86. # Added Files:
  87. #  vtime-vxworks.cxx
  88. # Removed Files:
  89. #  vos.h
  90. # Added additional functionality to OS abstraction for sleep() and
  91. # gettimeofday(). Modified fifo and udp so they compile for vxworks. Moved
  92. # definitions in vos.h to VThread.h.
  93. #
  94. # Revision 1.7  1999/11/23 23:35:53  wenqing
  95. # add UdpStack.cxx in SRC after ifdef-ed for vxworks
  96. #
  97. # Revision 1.6  1999/11/19 01:39:56  bogawa
  98. # fixes and changes for building the SH targets successfully
  99. #
  100. # Revision 1.5  1999/11/19 00:38:00  bogawa
  101. # changes for the util directory as well as using the new vmutex, etc. classes
  102. #
  103. # Revision 1.4  1999/11/18 00:28:49  bogawa
  104. # Add changes to use the util directory as well as try to make it possible to take out the calls to cout.
  105. #
  106. # Revision 1.3  1999/11/12 22:26:50  wenqing
  107. # Add in NetworkAddress.cxx
  108. #
  109. # Revision 1.2  1999/11/05 21:24:53  bogawa
  110. #
  111. # added util support (preliminary)
  112. #
  113. # Revision 1.1  1999/11/03 23:01:16  bogawa
  114. #
  115. # add make file for the util directory
  116. #
  117. BUILD = ../../../build
  118. include $(BUILD)/Makefile.pre
  119. DEFINES += USE_PTHREADS
  120. PACKAGES += PTHREAD UTIL
  121. # names of programs (e.g. test programs) to be compiled
  122. TESTPROGRAMS = 
  123. test_recv.cxx 
  124. test_send.cxx 
  125. #         test_bind.cxx 
  126. #        test_sendrecv_recv.cxx 
  127. #        test_sendrecv_send.cxx 
  128. # test_udp_sendloop.cxx
  129. #        test_networkaddr.cxx 
  130. #        test_sendrecv_recv.cxx 
  131. #        test_sendrecv_send.cxx 
  132. #        test_udp_sendrecv_recv.cxx 
  133. #        test_udp_sendrecv_send.cxx 
  134. # test_udp_send.cxx 
  135. # test_udp_receive.cxx
  136. # test_udp_mcast_rcv.cxx 
  137. #        test_udp_mcast_snd.cxx
  138. #        test_connect.cxx 
  139. #        test_connect_receive.cxx 
  140. #        test_connect_send.cxx 
  141. #        test_createUdp.cxx 
  142. #        test_udp.cxx 
  143. # name of all files to be compiled (don't include header files)
  144. SRC = 
  145. include $(BUILD)/Makefile.post