Makefile.inc 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. #***************************************************************************
  2. # _ _ ____ _
  3. # Project ___| | | | _ \| |
  4. # / __| | | | |_) | |
  5. # | (__| |_| | _ <| |___
  6. # \___|\___/|_| \_\_____|
  7. #
  8. # Copyright (C) 2009 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. #
  10. # This software is licensed as described in the file COPYING, which
  11. # you should have received as part of this distribution. The terms
  12. # are also available at https://curl.se/docs/copyright.html.
  13. #
  14. # You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. # copies of the Software, and permit persons to whom the Software is
  16. # furnished to do so, under the terms of the COPYING file.
  17. #
  18. # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. # KIND, either express or implied.
  20. #
  21. ###########################################################################
  22. noinst_PROGRAMS = getpart resolve rtspd sockfilt sws tftpd fake_ntlm \
  23. socksd disabled mqttd
  24. CURLX_SRCS = \
  25. ../../lib/mprintf.c \
  26. ../../lib/nonblock.c \
  27. ../../lib/strtoofft.c \
  28. ../../lib/warnless.c \
  29. ../../lib/curl_ctype.c \
  30. ../../lib/dynbuf.c \
  31. ../../lib/strdup.c \
  32. ../../lib/curl_multibyte.c
  33. CURLX_HDRS = \
  34. ../../lib/curlx.h \
  35. ../../lib/nonblock.h \
  36. ../../lib/strtoofft.h \
  37. ../../lib/warnless.h \
  38. ../../lib/curl_ctype.h \
  39. ../../lib/dynbuf.h \
  40. ../../lib/strdup.h \
  41. ../../lib/curl_multibyte.h
  42. USEFUL = \
  43. getpart.c \
  44. getpart.h \
  45. server_setup.h \
  46. ../../lib/base64.c \
  47. ../../lib/curl_base64.h \
  48. ../../lib/memdebug.c \
  49. ../../lib/memdebug.h
  50. UTIL = \
  51. util.c \
  52. util.h
  53. getpart_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) \
  54. testpart.c
  55. getpart_LDADD = @CURL_NETWORK_AND_TIME_LIBS@
  56. getpart_CFLAGS = $(AM_CFLAGS)
  57. resolve_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) $(UTIL) \
  58. resolve.c
  59. resolve_LDADD = @CURL_NETWORK_AND_TIME_LIBS@
  60. resolve_CFLAGS = $(AM_CFLAGS)
  61. rtspd_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) $(UTIL) \
  62. server_sockaddr.h \
  63. rtspd.c
  64. rtspd_LDADD = @CURL_NETWORK_AND_TIME_LIBS@
  65. rtspd_CFLAGS = $(AM_CFLAGS)
  66. sockfilt_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) $(UTIL) \
  67. server_sockaddr.h \
  68. sockfilt.c \
  69. ../../lib/inet_pton.c
  70. sockfilt_LDADD = @CURL_NETWORK_AND_TIME_LIBS@
  71. sockfilt_CFLAGS = $(AM_CFLAGS)
  72. socksd_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) $(UTIL) \
  73. server_sockaddr.h socksd.c \
  74. ../../lib/inet_pton.c
  75. socksd_LDADD = @CURL_NETWORK_AND_TIME_LIBS@
  76. socksd_CFLAGS = $(AM_CFLAGS)
  77. mqttd_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) $(UTIL) \
  78. server_sockaddr.h mqttd.c \
  79. ../../lib/inet_pton.c
  80. mqttd_LDADD = @CURL_NETWORK_AND_TIME_LIBS@
  81. mqttd_CFLAGS = $(AM_CFLAGS)
  82. sws_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) $(UTIL) \
  83. server_sockaddr.h \
  84. sws.c \
  85. ../../lib/inet_pton.c
  86. sws_LDADD = @CURL_NETWORK_AND_TIME_LIBS@
  87. sws_CFLAGS = $(AM_CFLAGS)
  88. tftpd_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) $(UTIL) \
  89. server_sockaddr.h \
  90. tftpd.c \
  91. tftp.h
  92. tftpd_LDADD = @CURL_NETWORK_AND_TIME_LIBS@
  93. tftpd_CFLAGS = $(AM_CFLAGS)
  94. fake_ntlm_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) $(UTIL) \
  95. fake_ntlm.c
  96. fake_ntlm_LDADD = @CURL_NETWORK_AND_TIME_LIBS@
  97. fake_ntlm_CFLAGS = $(AM_CFLAGS)
  98. disabled_SOURCES = disabled.c