Makefile.am 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. HTMLPAGES = testcurl.html runtests.html
  25. PDFPAGES = testcurl.pdf runtests.pdf
  26. MANDISTPAGES = runtests.1.dist testcurl.1.dist
  27. EXTRA_DIST = appveyor.pm azure.pm badsymbols.pl check-deprecated.pl CMakeLists.txt \
  28. dictserver.py directories.pm disable-scan.pl error-codes.pl extern-scan.pl \
  29. FILEFORMAT.md ftp.pm ftpserver.pl getpart.pm http-server.pl http2-server.pl http3-server.pl \
  30. manpage-scan.pl manpage-syntax.pl markdown-uppercase.pl mem-include-scan.pl \
  31. memanalyze.pl negtelnetserver.py nroff-scan.pl option-check.pl options-scan.pl \
  32. pathhelp.pm README.md rtspserver.pl runtests.1 runtests.pl secureserver.pl \
  33. serverhelp.pm smbserver.py sshhelp.pm sshserver.pl stunnel.pem symbol-scan.pl \
  34. testcurl.1 testcurl.pl tftpserver.pl util.py valgrind.pm valgrind.supp version-scan.pl
  35. DISTCLEANFILES = configurehelp.pm
  36. # we have two variables here to make sure DIST_SUBDIRS won't get 'unit'
  37. # added twice as then targets such as 'distclean' misbehave and try to
  38. # do things twice in that subdir at times (and thus fails).
  39. if BUILD_UNITTESTS
  40. BUILD_UNIT = unit
  41. DIST_UNIT =
  42. else
  43. BUILD_UNIT =
  44. DIST_UNIT = unit
  45. endif
  46. SUBDIRS = certs data server libtest http $(BUILD_UNIT)
  47. DIST_SUBDIRS = $(SUBDIRS) $(DIST_UNIT)
  48. PERLFLAGS = -I$(srcdir)
  49. CLEANFILES = .http.pid .https.pid .ftp.pid .ftps.pid $(MANDISTPAGES)
  50. MAN2HTML= roffit $< >$@
  51. curl:
  52. @cd $(top_builddir) && $(MAKE)
  53. if CROSSCOMPILING
  54. TEST = @echo "NOTICE: we can't run the tests when cross-compiling!"
  55. else # if not cross-compiling:
  56. TEST = srcdir=$(srcdir) $(PERL) $(PERLFLAGS) $(srcdir)/runtests.pl
  57. TEST_Q = -a -s
  58. TEST_AM = -a -am
  59. TEST_F = -a -p -r
  60. TEST_T = -a -t
  61. TEST_E = -a -e
  62. # !flaky means that it'll skip all tests using the flaky keyword
  63. TEST_NF = -a -p !flaky
  64. # special CI target derived from nonflaky with CI-specific flags
  65. TEST_CI = $(TEST_NF) -rm
  66. endif
  67. # make sure that PERL is pointing to an executable
  68. perlcheck:
  69. @if ! test -x "$(PERL)"; then echo "No perl!"; exit 2; fi
  70. test: perlcheck all
  71. $(TEST) $(TFLAGS)
  72. quiet-test: perlcheck all
  73. $(TEST) $(TEST_Q) $(TFLAGS)
  74. am-test: perlcheck all
  75. $(TEST) $(TEST_AM) $(TFLAGS)
  76. ci-test: perlcheck all
  77. $(TEST) $(TEST_CI) $(TFLAGS)
  78. full-test: perlcheck all
  79. $(TEST) $(TEST_F) $(TFLAGS)
  80. nonflaky-test: perlcheck all
  81. $(TEST) $(TEST_NF) $(TFLAGS)
  82. torture-test: perlcheck all
  83. $(TEST) $(TEST_T) $(TFLAGS)
  84. event-test: perlcheck all
  85. $(TEST) $(TEST_E) $(TFLAGS)
  86. .1.html:
  87. $(MAN2HTML)
  88. .1.pdf:
  89. @(foo=`echo $@ | sed -e 's/\.[0-9]$$//g'`; \
  90. groff -Tps -man $< >$$foo.ps; \
  91. ps2pdf $$foo.ps $@; \
  92. rm $$foo.ps; \
  93. echo "converted $< to $@")
  94. checksrc:
  95. cd libtest && $(MAKE) checksrc
  96. cd unit && $(MAKE) checksrc
  97. cd server && $(MAKE) checksrc
  98. if CURLDEBUG
  99. # for debug builds, we scan the sources on all regular make invokes
  100. all-local: checksrc
  101. endif