Makefile.am 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. AUTOMAKE_OPTIONS = subdir-objects
  31. EXTRA_DIST = Makefile.nmake
  32. lib_LTLIBRARIES = libusrsctp.la
  33. libusrsctp_la_SOURCES = user_atomic.h \
  34. user_environment.c user_environment.h \
  35. user_inpcb.h \
  36. user_ip_icmp.h \
  37. user_ip6_var.h \
  38. user_malloc.h \
  39. user_mbuf.c \
  40. user_mbuf.h \
  41. user_queue.h \
  42. user_recv_thread.c user_recv_thread.h \
  43. user_route.h \
  44. user_socket.c \
  45. user_socketvar.h \
  46. user_uma.h \
  47. netinet/sctp.h \
  48. netinet/sctp_asconf.c netinet/sctp_asconf.h \
  49. netinet/sctp_auth.c netinet/sctp_auth.h \
  50. netinet/sctp_bsd_addr.c netinet/sctp_bsd_addr.h \
  51. netinet/sctp_callout.c netinet/sctp_callout.h \
  52. netinet/sctp_cc_functions.c \
  53. netinet/sctp_constants.h \
  54. netinet/sctp_crc32.c netinet/sctp_crc32.h \
  55. netinet/sctp_header.h \
  56. netinet/sctp_indata.c netinet/sctp_indata.h \
  57. netinet/sctp_input.c netinet/sctp_input.h \
  58. netinet/sctp_lock_userspace.h \
  59. netinet/sctp_os.h \
  60. netinet/sctp_os_userspace.h \
  61. netinet/sctp_output.c netinet/sctp_output.h \
  62. netinet/sctp_pcb.c netinet/sctp_pcb.h \
  63. netinet/sctp_peeloff.c netinet/sctp_peeloff.h \
  64. netinet/sctp_process_lock.h \
  65. netinet/sctp_sha1.c netinet/sctp_sha1.h \
  66. netinet/sctp_ss_functions.c \
  67. netinet/sctp_structs.h \
  68. netinet/sctp_sysctl.c netinet/sctp_sysctl.h \
  69. netinet/sctp_userspace.c \
  70. netinet/sctp_timer.c netinet/sctp_timer.h \
  71. netinet/sctp_uio.h \
  72. netinet/sctp_usrreq.c \
  73. netinet/sctp_var.h \
  74. netinet/sctputil.c netinet/sctputil.h \
  75. netinet6/sctp6_var.h \
  76. netinet6/sctp6_usrreq.c
  77. libusrsctp_la_CFLAGS = $(LIBCFLAGS)
  78. libusrsctp_la_LDFLAGS = -version-info 2:0:0
  79. include_HEADERS = usrsctp.h