Makefile.am 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. #***************************************************************************
  2. # _ _ ____ _
  3. # Project ___| | | | _ \| |
  4. # / __| | | | |_) | |
  5. # | (__| |_| | _ <| |___
  6. # \___|\___/|_| \_\_____|
  7. #
  8. # Copyright (C) 1998 - 2019, 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. AUTOMAKE_OPTIONS = foreign no-dependencies
  23. # EXTRA_DIST breaks with $(abs_builddir) so build it using this variable
  24. # but distribute it (using the relative file name) in the next variable
  25. man_MANS = $(abs_builddir)/curl.1
  26. noinst_man_MANS = curl.1 mk-ca-bundle.1
  27. dist_man_MANS = curl-config.1
  28. GENHTMLPAGES = curl.html curl-config.html mk-ca-bundle.html
  29. PDFPAGES = curl.pdf curl-config.pdf mk-ca-bundle.pdf
  30. MANDISTPAGES = curl.1.dist curl-config.1.dist
  31. HTMLPAGES = $(GENHTMLPAGES) index.html
  32. # Build targets in this file (.) before cmdline-opts to ensure that
  33. # the curl.1 rule below runs first
  34. SUBDIRS = . cmdline-opts
  35. DIST_SUBDIRS = $(SUBDIRS) examples libcurl
  36. CLEANFILES = $(GENHTMLPAGES) $(PDFPAGES) $(MANDISTPAGES) curl.1
  37. EXTRA_DIST = \
  38. $(noinst_man_MANS) \
  39. BINDINGS.md \
  40. BUGS \
  41. CHECKSRC.md \
  42. CIPHERS.md \
  43. CMakeLists.txt \
  44. CODE_OF_CONDUCT.md \
  45. CODE_STYLE.md \
  46. CONTRIBUTE.md \
  47. DEPRECATE.md \
  48. FAQ \
  49. FEATURES \
  50. GOVERNANCE.md \
  51. HELP-US.md \
  52. HISTORY.md \
  53. HTTP-COOKIES.md \
  54. HTTP2.md \
  55. INSTALL \
  56. INSTALL.cmake \
  57. INSTALL.md \
  58. INTERNALS.md \
  59. KNOWN_BUGS \
  60. LICENSE-MIXING.md \
  61. MAIL-ETIQUETTE \
  62. README.cmake \
  63. README.md \
  64. README.netware \
  65. README.win32 \
  66. RELEASE-PROCEDURE.md \
  67. RESOURCES \
  68. ROADMAP.md \
  69. SECURITY-PROCESS.md \
  70. SSL-PROBLEMS.md \
  71. SSLCERTS.md \
  72. THANKS \
  73. TODO \
  74. TheArtOfHttpScripting \
  75. VERSIONS
  76. MAN2HTML= roffit $< >$@
  77. SUFFIXES = .1 .html .pdf
  78. # $(abs_builddir) is to disable VPATH when searching for this file, which
  79. # would otherwise find the copy in $(srcdir) which breaks the $(HUGE)
  80. # rule in src/Makefile.am in out-of-tree builds that references the file in the
  81. # build directory.
  82. #
  83. # First, seed the used copy of curl.1 with the prebuilt copy (in an out-of-tree
  84. # build), then run make recursively to rebuild it only if its dependencies
  85. # have changed.
  86. $(abs_builddir)/curl.1:
  87. if test "$(top_builddir)x" != "$(top_srcdir)x" -a -e "$(srcdir)/curl.1"; then \
  88. $(INSTALL_DATA) "$(srcdir)/curl.1" $@; fi
  89. cd cmdline-opts && $(MAKE)
  90. html: $(HTMLPAGES)
  91. cd libcurl && $(MAKE) html
  92. pdf: $(PDFPAGES)
  93. cd libcurl && $(MAKE) pdf
  94. .1.html:
  95. $(MAN2HTML)
  96. .1.pdf:
  97. @(foo=`echo $@ | sed -e 's/\.[0-9]$$//g'`; \
  98. groff -Tps -man $< >$$foo.ps; \
  99. ps2pdf $$foo.ps $@; \
  100. rm $$foo.ps; \
  101. echo "converted $< to $@")
  102. distclean:
  103. rm -f $(CLEANFILES)