Makefile.am 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. SUBDIRS = clients
  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. EXTRA_DIST = \
  39. config.ini.in \
  40. conftest.py \
  41. requirements.txt \
  42. scorecard.py \
  43. test_01_basic.py \
  44. test_02_download.py \
  45. test_03_goaway.py \
  46. test_04_stuttered.py \
  47. test_05_errors.py \
  48. test_06_eyeballs.py \
  49. test_07_upload.py \
  50. test_08_caddy.py \
  51. test_09_push.py \
  52. test_10_proxy.py \
  53. test_11_unix.py \
  54. test_12_reuse.py \
  55. test_13_proxy_auth.py \
  56. test_14_auth.py \
  57. test_15_tracing.py \
  58. test_20_websockets.py \
  59. $(TESTENV)
  60. clean-local:
  61. rm -rf *.pyc __pycache__
  62. rm -rf gen
  63. check: clients
  64. clients:
  65. @(cd clients; $(MAKE) check)
  66. checksrc:
  67. cd clients && $(MAKE) checksrc