Annotation of embedaddon/curl/tests/server/Makefile.inc, revision 1.1.1.1

1.1       misho       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.haxx.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: 
                     23: noinst_PROGRAMS = getpart resolve rtspd sockfilt sws tftpd fake_ntlm    \
                     24:  socksd disabled mqttd
                     25: 
                     26: CURLX_SRCS = \
                     27:  ../../lib/mprintf.c \
                     28:  ../../lib/nonblock.c \
                     29:  ../../lib/strtoofft.c \
                     30:  ../../lib/warnless.c \
                     31:  ../../lib/curl_ctype.c
                     32: 
                     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: 
                     40: USEFUL = \
                     41:  getpart.c \
                     42:  getpart.h \
                     43:  server_setup.h \
                     44:  ../../lib/base64.c \
                     45:  ../../lib/curl_base64.h \
                     46:  ../../lib/memdebug.c \
                     47:  ../../lib/memdebug.h
                     48: 
                     49: UTIL = \
                     50:  util.c \
                     51:  util.h
                     52: 
                     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: 
                     58: resolve_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) $(UTIL) \
                     59:  resolve.c
                     60: resolve_LDADD = @CURL_NETWORK_AND_TIME_LIBS@
                     61: resolve_CFLAGS = $(AM_CFLAGS)
                     62: 
                     63: rtspd_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) $(UTIL) \
                     64:  server_sockaddr.h \
                     65:  rtspd.c
                     66: rtspd_LDADD = @CURL_NETWORK_AND_TIME_LIBS@
                     67: rtspd_CFLAGS = $(AM_CFLAGS)
                     68: 
                     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: 
                     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: 
                     82: mqttd_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) $(UTIL) \
                     83:  server_sockaddr.h mqttd.c \
                     84:  ../../lib/inet_pton.c
                     85: mqttd_LDADD = @CURL_NETWORK_AND_TIME_LIBS@
                     86: mqttd_CFLAGS = $(AM_CFLAGS)
                     87: 
                     88: sws_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) $(UTIL) \
                     89:  server_sockaddr.h \
                     90:  sws.c \
                     91:  ../../lib/inet_pton.c
                     92: sws_LDADD = @CURL_NETWORK_AND_TIME_LIBS@
                     93: sws_CFLAGS = $(AM_CFLAGS)
                     94: 
                     95: tftpd_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) $(UTIL) \
                     96:  server_sockaddr.h \
                     97:  tftpd.c \
                     98:  tftp.h
                     99: tftpd_LDADD = @CURL_NETWORK_AND_TIME_LIBS@
                    100: tftpd_CFLAGS = $(AM_CFLAGS)
                    101: 
                    102: fake_ntlm_SOURCES = $(CURLX_SRCS) $(CURLX_HDRS) $(USEFUL) $(UTIL) \
                    103:  fake_ntlm.c
                    104: fake_ntlm_LDADD = @CURL_NETWORK_AND_TIME_LIBS@
                    105: fake_ntlm_CFLAGS = $(AM_CFLAGS)
                    106: 
                    107: disabled_SOURCES = disabled.c

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>