Makefile.inc 3.3 KB

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