Makefile.am 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. #
  2. # Copyright (C) 2011-2012 Michael Tuexen
  3. #
  4. # All rights reserved.
  5. #
  6. # Redistribution and use in source and binary forms, with or without
  7. # modification, are permitted provided that the following conditions
  8. # are met:
  9. # 1. Redistributions of source code must retain the above copyright
  10. # notice, this list of conditions and the following disclaimer.
  11. # 2. Redistributions in binary form must reproduce the above copyright
  12. # notice, this list of conditions and the following disclaimer in the
  13. # documentation and/or other materials provided with the distribution.
  14. # 3. Neither the name of the project nor the names of its contributors
  15. # may be used to endorse or promote products derived from this software
  16. # without specific prior written permission.
  17. #
  18. # THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
  19. # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  20. # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  21. # ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
  22. # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  23. # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  24. # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  25. # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  26. # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  27. # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  28. # SUCH DAMAGE.
  29. #
  30. AM_CPPFLAGS = -I$(srcdir)/../usrsctplib
  31. EXTRA_DIST = \
  32. Makefile.nmake \
  33. test_libmgmt.c \
  34. test_timer.c \
  35. tsctp.c \
  36. chargen_server_upcall.c \
  37. daytime_server.c \
  38. daytime_server_upcall.c \
  39. discard_server.c \
  40. discard_server_upcall.c \
  41. echo_server.c \
  42. echo_server_upcall.c \
  43. client.c \
  44. client_upcall.c \
  45. rtcweb.c \
  46. ekr_client.c \
  47. ekr_server.c \
  48. ekr_loop.c \
  49. ekr_loop_upcall.c \
  50. ekr_peer.c \
  51. test_libmgmt.c \
  52. http_client.c \
  53. http_client_upcall.c \
  54. st_client.c
  55. noinst_PROGRAMS = \
  56. test_libmgmt \
  57. test_timer \
  58. tsctp \
  59. chargen_server_upcall \
  60. daytime_server \
  61. daytime_server_upcall \
  62. discard_server \
  63. discard_server_upcall \
  64. echo_server \
  65. echo_server_upcall \
  66. client \
  67. client_upcall \
  68. rtcweb \
  69. ekr_client \
  70. ekr_server \
  71. ekr_loop \
  72. ekr_loop_upcall \
  73. ekr_peer \
  74. test_libmgmt \
  75. http_client \
  76. http_client_upcall \
  77. st_client
  78. test_libmgmt_SOURCES = programs_helper.c test_libmgmt.c
  79. test_libmgmt_LDADD = ../usrsctplib/libusrsctp.la
  80. test_timer_SOURCES = programs_helper.c test_timer.c
  81. test_timer_LDADD = ../usrsctplib/libusrsctp.la
  82. tsctp_SOURCES = programs_helper.c tsctp.c
  83. tsctp_LDADD = ../usrsctplib/libusrsctp.la
  84. chargen_server_upcall_SOURCES = programs_helper.c chargen_server_upcall.c
  85. chargen_server_upcall_LDADD = ../usrsctplib/libusrsctp.la
  86. daytime_server_SOURCES = programs_helper.c daytime_server.c
  87. daytime_server_LDADD = ../usrsctplib/libusrsctp.la
  88. daytime_server_upcall_SOURCES = programs_helper.c daytime_server_upcall.c
  89. daytime_server_upcall_LDADD = ../usrsctplib/libusrsctp.la
  90. discard_server_SOURCES = programs_helper.c discard_server.c
  91. discard_server_LDADD = ../usrsctplib/libusrsctp.la
  92. discard_server_upcall_SOURCES = programs_helper.c discard_server_upcall.c
  93. discard_server_upcall_LDADD = ../usrsctplib/libusrsctp.la
  94. echo_server_SOURCES = programs_helper.c echo_server.c
  95. echo_server_LDADD = ../usrsctplib/libusrsctp.la
  96. echo_server_upcall_SOURCES = programs_helper.c echo_server_upcall.c
  97. echo_server_upcall_LDADD = ../usrsctplib/libusrsctp.la
  98. client_SOURCES = programs_helper.c client.c
  99. client_LDADD = ../usrsctplib/libusrsctp.la
  100. client_upcall_SOURCES = programs_helper.c client_upcall.c
  101. client_upcall_LDADD = ../usrsctplib/libusrsctp.la
  102. rtcweb_SOURCES = programs_helper.c rtcweb.c
  103. rtcweb_LDADD = ../usrsctplib/libusrsctp.la
  104. ekr_server_SOURCES = programs_helper.c ekr_server.c
  105. ekr_server_LDADD = ../usrsctplib/libusrsctp.la
  106. ekr_client_SOURCES = programs_helper.c ekr_client.c
  107. ekr_client_LDADD = ../usrsctplib/libusrsctp.la
  108. ekr_peer_SOURCES = programs_helper.c ekr_peer.c
  109. ekr_peer_LDADD = ../usrsctplib/libusrsctp.la
  110. ekr_loop_SOURCES = programs_helper.c ekr_loop.c
  111. ekr_loop_LDADD = ../usrsctplib/libusrsctp.la
  112. ekr_loop_upcall_SOURCES = programs_helper.c ekr_loop_upcall.c
  113. ekr_loop_upcall_LDADD = ../usrsctplib/libusrsctp.la
  114. http_client_SOURCES = programs_helper.c http_client.c
  115. http_client_LDADD = ../usrsctplib/libusrsctp.la
  116. http_client_upcall_SOURCES = programs_helper.c http_client_upcall.c
  117. http_client_upcall_LDADD = ../usrsctplib/libusrsctp.la
  118. st_client_SOURCES = programs_helper.c st_client.c
  119. st_client_LDADD = ../usrsctplib/libusrsctp.la