Makefile.am 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. #***************************************************************************
  2. # _ _ ____ _
  3. # Project ___| | | | _ \| |
  4. # / __| | | | |_) | |
  5. # | (__| |_| | _ <| |___
  6. # \___|\___/|_| \_\_____|
  7. #
  8. # Copyright (C) 1998 - 2020, 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.haxx.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. ###########################################################################
  22. HTMLPAGES = testcurl.html runtests.html
  23. PDFPAGES = testcurl.pdf runtests.pdf
  24. MANDISTPAGES = runtests.1.dist testcurl.1.dist
  25. EXTRA_DIST = ftpserver.pl httpserver.pl secureserver.pl runtests.pl \
  26. getpart.pm FILEFORMAT.md README stunnel.pem memanalyze.pl testcurl.pl \
  27. valgrind.pm ftp.pm sshserver.pl sshhelp.pm pathhelp.pm testcurl.1 runtests.1 \
  28. serverhelp.pm tftpserver.pl rtspserver.pl directories.pm symbol-scan.pl \
  29. CMakeLists.txt mem-include-scan.pl valgrind.supp extern-scan.pl \
  30. manpage-scan.pl nroff-scan.pl http2-server.pl dictserver.py \
  31. negtelnetserver.py smbserver.py curl_test_data.py \
  32. objnames-test08.sh objnames-test10.sh objnames.inc \
  33. disable-scan.pl manpage-syntax.pl error-codes.pl badsymbols.pl \
  34. azure.pm appveyor.pm version-scan.pl options-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 $(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. endif
  65. # make sure that PERL is pointing to an executable
  66. perlcheck:
  67. @if ! test -x "$(PERL)"; then echo "No perl!"; exit 2; fi
  68. test: perlcheck all
  69. $(TEST) $(TFLAGS)
  70. quiet-test: perlcheck all
  71. $(TEST) $(TEST_Q) $(TFLAGS)
  72. am-test: perlcheck all
  73. $(TEST) $(TEST_AM) $(TFLAGS)
  74. full-test: perlcheck all
  75. $(TEST) $(TEST_F) $(TFLAGS)
  76. nonflaky-test: perlcheck all
  77. $(TEST) $(TEST_NF) $(TFLAGS)
  78. torture-test: perlcheck all
  79. $(TEST) $(TEST_T) $(TFLAGS)
  80. event-test: perlcheck all
  81. $(TEST) $(TEST_E) $(TFLAGS)
  82. .1.html:
  83. $(MAN2HTML)
  84. .1.pdf:
  85. @(foo=`echo $@ | sed -e 's/\.[0-9]$$//g'`; \
  86. groff -Tps -man $< >$$foo.ps; \
  87. ps2pdf $$foo.ps $@; \
  88. rm $$foo.ps; \
  89. echo "converted $< to $@")
  90. checksrc:
  91. cd libtest && $(MAKE) checksrc
  92. cd unit && $(MAKE) checksrc
  93. cd server && $(MAKE) checksrc
  94. if CURLDEBUG
  95. # for debug builds, we scan the sources on all regular make invokes
  96. all-local: checksrc
  97. endif