Makefile.am (2350B)
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 25 TESTENV = \ 26 testenv/__init__.py \ 27 testenv/caddy.py \ 28 testenv/certs.py \ 29 testenv/client.py \ 30 testenv/curl.py \ 31 testenv/env.py \ 32 testenv/httpd.py \ 33 testenv/mod_curltest/mod_curltest.c \ 34 testenv/nghttpx.py \ 35 testenv/ports.py \ 36 testenv/vsftpd.py \ 37 testenv/ws_echo_server.py 38 39 EXTRA_DIST = \ 40 CMakeLists.txt \ 41 conftest.py \ 42 requirements.txt \ 43 scorecard.py \ 44 test_01_basic.py \ 45 test_02_download.py \ 46 test_03_goaway.py \ 47 test_04_stuttered.py \ 48 test_05_errors.py \ 49 test_06_eyeballs.py \ 50 test_07_upload.py \ 51 test_08_caddy.py \ 52 test_09_push.py \ 53 test_10_proxy.py \ 54 test_11_unix.py \ 55 test_12_reuse.py \ 56 test_13_proxy_auth.py \ 57 test_14_auth.py \ 58 test_15_tracing.py \ 59 test_16_info.py \ 60 test_17_ssl_use.py \ 61 test_18_methods.py \ 62 test_19_shutdown.py \ 63 test_20_websockets.py \ 64 test_30_vsftpd.py \ 65 test_31_vsftpds.py \ 66 test_32_ftps_vsftpd.py \ 67 $(TESTENV) 68 69 clean-local: 70 rm -rf *.pyc __pycache__ 71 rm -rf gen 72 73 check: clients 74 75 clients: 76 @(cd ../client; $(MAKE) check)