2
0

Makefile.inc 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. #***************************************************************************
  2. # _ _ ____ _
  3. # Project ___| | | | _ \| |
  4. # / __| | | | |_) | |
  5. # | (__| |_| | _ <| |___
  6. # \___|\___/|_| \_\_____|
  7. #
  8. # Copyright (C) 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. # SPDX-License-Identifier: curl
  22. #
  23. ###########################################################################
  24. noinst_PROGRAMS = getpart resolve rtspd sockfilt sws tftpd fake_ntlm \
  25. socksd disabled mqttd
  26. CURLX_SRCS = \
  27. ../../lib/mprintf.c \
  28. ../../lib/nonblock.c \
  29. ../../lib/strtoofft.c \
  30. ../../lib/warnless.c \
  31. ../../lib/timediff.c \
  32. ../../lib/dynbuf.c \
  33. ../../lib/strdup.c \
  34. ../../lib/strcase.c \
  35. ../../lib/curl_multibyte.c
  36. CURLX_HDRS = \
  37. ../../lib/curlx.h \
  38. ../../lib/nonblock.h \
  39. ../../lib/strtoofft.h \
  40. ../../lib/warnless.h \
  41. ../../lib/timediff.h \
  42. ../../lib/curl_ctype.h \
  43. ../../lib/dynbuf.h \
  44. ../../lib/strdup.h \
  45. ../../lib/curl_multibyte.h
  46. USEFUL = \
  47. getpart.c \
  48. getpart.h \
  49. server_setup.h \
  50. ../../lib/base64.c \
  51. ../../lib/curl_base64.h \
  52. ../../lib/memdebug.c \
  53. ../../lib/memdebug.h
  54. UTIL = \
  55. util.c \
  56. util.h
  57. getpart_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) \
  58. testpart.c
  59. getpart_LDADD = @CURL_NETWORK_AND_TIME_LIBS@
  60. getpart_CFLAGS = $(AM_CFLAGS)
  61. resolve_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) $(UTIL) \
  62. resolve.c
  63. resolve_LDADD = @CURL_NETWORK_AND_TIME_LIBS@
  64. resolve_CFLAGS = $(AM_CFLAGS)
  65. rtspd_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) $(UTIL) \
  66. server_sockaddr.h \
  67. rtspd.c
  68. rtspd_LDADD = @CURL_NETWORK_AND_TIME_LIBS@
  69. rtspd_CFLAGS = $(AM_CFLAGS)
  70. sockfilt_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) $(UTIL) \
  71. server_sockaddr.h \
  72. sockfilt.c \
  73. ../../lib/inet_pton.c
  74. sockfilt_LDADD = @CURL_NETWORK_AND_TIME_LIBS@
  75. sockfilt_CFLAGS = $(AM_CFLAGS)
  76. socksd_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) $(UTIL) \
  77. server_sockaddr.h socksd.c \
  78. ../../lib/inet_pton.c
  79. socksd_LDADD = @CURL_NETWORK_AND_TIME_LIBS@
  80. socksd_CFLAGS = $(AM_CFLAGS)
  81. mqttd_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) $(UTIL) \
  82. server_sockaddr.h mqttd.c \
  83. ../../lib/inet_pton.c
  84. mqttd_LDADD = @CURL_NETWORK_AND_TIME_LIBS@
  85. mqttd_CFLAGS = $(AM_CFLAGS)
  86. sws_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) $(UTIL) \
  87. server_sockaddr.h \
  88. sws.c \
  89. ../../lib/inet_pton.c
  90. sws_LDADD = @CURL_NETWORK_AND_TIME_LIBS@
  91. sws_CFLAGS = $(AM_CFLAGS)
  92. tftpd_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) $(UTIL) \
  93. server_sockaddr.h \
  94. tftpd.c \
  95. tftp.h
  96. tftpd_LDADD = @CURL_NETWORK_AND_TIME_LIBS@
  97. tftpd_CFLAGS = $(AM_CFLAGS)
  98. fake_ntlm_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) $(UTIL) \
  99. fake_ntlm.c
  100. fake_ntlm_LDADD = @CURL_NETWORK_AND_TIME_LIBS@
  101. fake_ntlm_CFLAGS = $(AM_CFLAGS)
  102. disabled_SOURCES = disabled.c