quickjs-tart

quickjs-based runtime for wallet-core logic
Log | Files | Refs | README | LICENSE

Makefile.inc (1761B)


      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 # Shared between CMakeLists.txt and Makefile.am
     25 
     26 BUNDLE = servers
     27 
     28 # Files referenced from the bundle source
     29 FIRST_C = first.c
     30 FIRST_H = first.h
     31 
     32 # Common files used by test programs
     33 UTILS_C = memptr.c getpart.c util.c
     34 UTILS_H =
     35 
     36 CURLX_C = \
     37   ../../lib/curlx/base64.c \
     38   ../../lib/curlx/inet_pton.c \
     39   ../../lib/curlx/inet_ntop.c \
     40   ../../lib/curlx/multibyte.c \
     41   ../../lib/curlx/nonblock.c \
     42   ../../lib/curlx/strparse.c \
     43   ../../lib/curlx/timediff.c \
     44   ../../lib/curlx/timeval.c \
     45   ../../lib/curlx/version_win32.c \
     46   ../../lib/curlx/wait.c \
     47   ../../lib/curlx/warnless.c \
     48   ../../lib/curlx/winapi.c
     49 
     50 # All test servers
     51 TESTS_C = \
     52   dnsd.c \
     53   mqttd.c \
     54   resolve.c \
     55   rtspd.c \
     56   sockfilt.c \
     57   socksd.c \
     58   sws.c \
     59   tftpd.c