Makefile.am 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. #***************************************************************************
  2. # _ _ ____ _
  3. # Project ___| | | | _ \| |
  4. # / __| | | | |_) | |
  5. # | (__| |_| | _ <| |___
  6. # \___|\___/|_| \_\_____|
  7. #
  8. # Copyright (C) 1998 - 2009, 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 http://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. # $Id$
  22. ###########################################################################
  23. HTMLPAGES = testcurl.html runtests.html
  24. PDFPAGES = testcurl.pdf runtests.pdf
  25. EXTRA_DIST = ftpserver.pl httpserver.pl secureserver.pl runtests.pl getpart.pm \
  26. FILEFORMAT README stunnel.pem memanalyze.pl testcurl.pl valgrind.pm ftp.pm \
  27. sshserver.pl sshhelp.pm testcurl.1 runtests.1 $(HTMLPAGES) $(PDFPAGES) \
  28. CMakeLists.txt certs/scripts/*.sh certs/Server* certs/EdelCurlRoot* \
  29. serverhelp.pm tftpserver.pl rtspserver.pl
  30. SUBDIRS = data server libtest
  31. PERLFLAGS = -I$(srcdir)
  32. CLEANFILES = .http.pid .https.pid .ftp.pid .ftps.pid
  33. MAN2HTML= roffit < $< >$@
  34. curl:
  35. @cd $(top_builddir) && $(MAKE)
  36. if CROSSCOMPILING
  37. TEST = @echo "NOTICE: we can't run the tests when cross-compiling!"
  38. TEST_Q =
  39. TEST_F =
  40. TEST_T =
  41. else # if not cross-compiling:
  42. TEST = srcdir=$(srcdir) $(PERL) $(PERLFLAGS) $(srcdir)/runtests.pl
  43. TEST_Q = -a -s
  44. TEST_F = -a -p -r
  45. TEST_T = -a -t
  46. endif
  47. test: all
  48. $(TEST)
  49. quiet-test: all
  50. $(TEST) $(TEST_Q)
  51. full-test: all
  52. $(TEST) $(TEST_F)
  53. torture-test: all
  54. $(TEST) $(TEST_T)
  55. .1.html:
  56. $(MAN2HTML)
  57. .1.pdf:
  58. @(foo=`echo $@ | sed -e 's/\.[0-9]$$//g'`; \
  59. groff -Tps -man $< >$$foo.ps; \
  60. ps2pdf $$foo.ps $@; \
  61. rm $$foo.ps; \
  62. echo "converted $< to $@")