1*6236dae4SAndroid Build Coastguard Worker#*************************************************************************** 2*6236dae4SAndroid Build Coastguard Worker# _ _ ____ _ 3*6236dae4SAndroid Build Coastguard Worker# Project ___| | | | _ \| | 4*6236dae4SAndroid Build Coastguard Worker# / __| | | | |_) | | 5*6236dae4SAndroid Build Coastguard Worker# | (__| |_| | _ <| |___ 6*6236dae4SAndroid Build Coastguard Worker# \___|\___/|_| \_\_____| 7*6236dae4SAndroid Build Coastguard Worker# 8*6236dae4SAndroid Build Coastguard Worker# Copyright (C) Daniel Stenberg, <[email protected]>, et al. 9*6236dae4SAndroid Build Coastguard Worker# 10*6236dae4SAndroid Build Coastguard Worker# This software is licensed as described in the file COPYING, which 11*6236dae4SAndroid Build Coastguard Worker# you should have received as part of this distribution. The terms 12*6236dae4SAndroid Build Coastguard Worker# are also available at https://curl.se/docs/copyright.html. 13*6236dae4SAndroid Build Coastguard Worker# 14*6236dae4SAndroid Build Coastguard Worker# You may opt to use, copy, modify, merge, publish, distribute and/or sell 15*6236dae4SAndroid Build Coastguard Worker# copies of the Software, and permit persons to whom the Software is 16*6236dae4SAndroid Build Coastguard Worker# furnished to do so, under the terms of the COPYING file. 17*6236dae4SAndroid Build Coastguard Worker# 18*6236dae4SAndroid Build Coastguard Worker# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19*6236dae4SAndroid Build Coastguard Worker# KIND, either express or implied. 20*6236dae4SAndroid Build Coastguard Worker# 21*6236dae4SAndroid Build Coastguard Worker# SPDX-License-Identifier: curl 22*6236dae4SAndroid Build Coastguard Worker# 23*6236dae4SAndroid Build Coastguard Worker########################################################################### 24*6236dae4SAndroid Build Coastguard Worker 25*6236dae4SAndroid Build Coastguard WorkerSUBDIRS = clients 26*6236dae4SAndroid Build Coastguard Worker 27*6236dae4SAndroid Build Coastguard WorkerTESTENV = \ 28*6236dae4SAndroid Build Coastguard Workertestenv/__init__.py \ 29*6236dae4SAndroid Build Coastguard Workertestenv/caddy.py \ 30*6236dae4SAndroid Build Coastguard Workertestenv/certs.py \ 31*6236dae4SAndroid Build Coastguard Workertestenv/client.py \ 32*6236dae4SAndroid Build Coastguard Workertestenv/curl.py \ 33*6236dae4SAndroid Build Coastguard Workertestenv/env.py \ 34*6236dae4SAndroid Build Coastguard Workertestenv/httpd.py \ 35*6236dae4SAndroid Build Coastguard Workertestenv/mod_curltest/mod_curltest.c \ 36*6236dae4SAndroid Build Coastguard Workertestenv/nghttpx.py \ 37*6236dae4SAndroid Build Coastguard Workertestenv/ports.py \ 38*6236dae4SAndroid Build Coastguard Workertestenv/vsftpd.py \ 39*6236dae4SAndroid Build Coastguard Workertestenv/ws_echo_server.py 40*6236dae4SAndroid Build Coastguard Worker 41*6236dae4SAndroid Build Coastguard WorkerEXTRA_DIST = \ 42*6236dae4SAndroid Build Coastguard WorkerCMakeLists.txt \ 43*6236dae4SAndroid Build Coastguard Workerconftest.py \ 44*6236dae4SAndroid Build Coastguard Workerrequirements.txt \ 45*6236dae4SAndroid Build Coastguard Workerscorecard.py \ 46*6236dae4SAndroid Build Coastguard Workertest_01_basic.py \ 47*6236dae4SAndroid Build Coastguard Workertest_02_download.py \ 48*6236dae4SAndroid Build Coastguard Workertest_03_goaway.py \ 49*6236dae4SAndroid Build Coastguard Workertest_04_stuttered.py \ 50*6236dae4SAndroid Build Coastguard Workertest_05_errors.py \ 51*6236dae4SAndroid Build Coastguard Workertest_06_eyeballs.py \ 52*6236dae4SAndroid Build Coastguard Workertest_07_upload.py \ 53*6236dae4SAndroid Build Coastguard Workertest_08_caddy.py \ 54*6236dae4SAndroid Build Coastguard Workertest_09_push.py \ 55*6236dae4SAndroid Build Coastguard Workertest_10_proxy.py \ 56*6236dae4SAndroid Build Coastguard Workertest_11_unix.py \ 57*6236dae4SAndroid Build Coastguard Workertest_12_reuse.py \ 58*6236dae4SAndroid Build Coastguard Workertest_13_proxy_auth.py \ 59*6236dae4SAndroid Build Coastguard Workertest_14_auth.py \ 60*6236dae4SAndroid Build Coastguard Workertest_15_tracing.py \ 61*6236dae4SAndroid Build Coastguard Workertest_16_info.py \ 62*6236dae4SAndroid Build Coastguard Workertest_17_ssl_use.py \ 63*6236dae4SAndroid Build Coastguard Workertest_18_methods.py \ 64*6236dae4SAndroid Build Coastguard Workertest_19_shutdown.py \ 65*6236dae4SAndroid Build Coastguard Workertest_20_websockets.py \ 66*6236dae4SAndroid Build Coastguard Workertest_30_vsftpd.py \ 67*6236dae4SAndroid Build Coastguard Workertest_31_vsftpds.py \ 68*6236dae4SAndroid Build Coastguard Worker$(TESTENV) 69*6236dae4SAndroid Build Coastguard Worker 70*6236dae4SAndroid Build Coastguard Workerclean-local: 71*6236dae4SAndroid Build Coastguard Worker rm -rf *.pyc __pycache__ 72*6236dae4SAndroid Build Coastguard Worker rm -rf gen 73*6236dae4SAndroid Build Coastguard Worker 74*6236dae4SAndroid Build Coastguard Workercheck: clients 75*6236dae4SAndroid Build Coastguard Worker 76*6236dae4SAndroid Build Coastguard Workerclients: 77*6236dae4SAndroid Build Coastguard Worker @(cd clients; $(MAKE) check) 78*6236dae4SAndroid Build Coastguard Worker 79*6236dae4SAndroid Build Coastguard Workerchecksrc: 80*6236dae4SAndroid Build Coastguard Worker cd clients && $(MAKE) checksrc 81