include.am 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. # vim:ft=automake
  2. # libhostile
  3. # Copyright (C) 2011 - 2013 Data Differential
  4. # All rights reserved.
  5. #
  6. # Use and distribution licensed under the BSD license. See
  7. # the COPYING file in the parent directory for full text.
  8. #
  9. # Included from Top Level Makefile.am
  10. # All paths should be given relative to the root
  11. # Unit tests
  12. include libhostile/t/include.am
  13. check_LTLIBRARIES+= libhostile/libhostile.la
  14. noinst_HEADERS+= libhostile/accept.h
  15. noinst_HEADERS+= libhostile/action.h
  16. noinst_HEADERS+= libhostile/called.h
  17. noinst_HEADERS+= libhostile/close.h
  18. noinst_HEADERS+= libhostile/connect.h
  19. noinst_HEADERS+= libhostile/function.h
  20. noinst_HEADERS+= libhostile/getaddrinfo.h
  21. noinst_HEADERS+= libhostile/hostile.h
  22. noinst_HEADERS+= libhostile/initialize.h
  23. noinst_HEADERS+= libhostile/malloc.h
  24. noinst_HEADERS+= libhostile/pipe.h
  25. noinst_HEADERS+= libhostile/poll.h
  26. noinst_HEADERS+= libhostile/realloc.h
  27. noinst_HEADERS+= libhostile/recv.h
  28. noinst_HEADERS+= libhostile/send.h
  29. noinst_HEADERS+= libhostile/setsockopt.h
  30. noinst_HEADERS+= libhostile/socket.h
  31. noinst_HEADERS+= libhostile/socket_server.h
  32. noinst_HEADERS+= libhostile/sync.h
  33. noinst_HEADERS+= libhostile/visibility.h
  34. noinst_HEADERS+= libhostile/write.h
  35. libhostile_libhostile_la_CFLAGS=
  36. libhostile_libhostile_la_CXXFLAGS=
  37. libhostile_libhostile_la_LIBADD=
  38. libhostile_libhostile_la_SOURCES=
  39. libhostile_libhostile_la_CFLAGS+= -DBUILDING_LIBHOSTILE
  40. libhostile_libhostile_la_CXXFLAGS+= -DBUILDING_LIBHOSTILE
  41. libhostile_libhostile_la_CFLAGS+= @PTHREAD_CFLAGS@
  42. libhostile_libhostile_la_CXXFLAGS+= @PTHREAD_CFLAGS@
  43. libhostile_libhostile_la_SOURCES+= libhostile/initialize.c
  44. if TARGET_HOSTILE
  45. libhostile_libhostile_la_LIBADD+= @lt_cv_dlopen_libs@
  46. libhostile_libhostile_la_LIBADD+= @RT_LIB@
  47. libhostile_libhostile_la_LIBADD+= @PTHREAD_LIBS@
  48. libhostile_libhostile_la_SOURCES+= libhostile/accept.c
  49. libhostile_libhostile_la_SOURCES+= libhostile/called.c
  50. libhostile_libhostile_la_SOURCES+= libhostile/close.c
  51. libhostile_libhostile_la_SOURCES+= libhostile/connect.c
  52. libhostile_libhostile_la_SOURCES+= libhostile/function.c
  53. libhostile_libhostile_la_SOURCES+= libhostile/getaddrinfo.c
  54. libhostile_libhostile_la_SOURCES+= libhostile/malloc.c
  55. libhostile_libhostile_la_SOURCES+= libhostile/pipe.c
  56. libhostile_libhostile_la_SOURCES+= libhostile/poll.c
  57. libhostile_libhostile_la_SOURCES+= libhostile/realloc.c
  58. libhostile_libhostile_la_SOURCES+= libhostile/recv.c
  59. libhostile_libhostile_la_SOURCES+= libhostile/send.c
  60. libhostile_libhostile_la_SOURCES+= libhostile/socket.c
  61. libhostile_libhostile_la_SOURCES+= libhostile/socket_server.c
  62. libhostile_libhostile_la_SOURCES+= libhostile/setsockopt.c
  63. libhostile_libhostile_la_SOURCES+= libhostile/write.c
  64. else
  65. libhostile_libhostile_la_SOURCES+= libhostile/dummy.c
  66. endif