Makefile.am 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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.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. ALTSVC.md \
  40. BINDINGS.md \
  41. BUG-BOUNTY.md \
  42. BUGS.md \
  43. CHECKSRC.md \
  44. CIPHERS.md \
  45. CMakeLists.txt \
  46. CODE_OF_CONDUCT.md \
  47. CODE_REVIEW.md \
  48. CODE_STYLE.md \
  49. CONTRIBUTE.md \
  50. CURL-DISABLE.md \
  51. DEPRECATE.md \
  52. DYNBUF.md \
  53. ECH.md \
  54. EXPERIMENTAL.md \
  55. FAQ \
  56. FEATURES.md \
  57. GOVERNANCE.md \
  58. HELP-US.md \
  59. HISTORY.md \
  60. HSTS.md \
  61. HTTP-COOKIES.md \
  62. HTTP2.md \
  63. HTTP3.md \
  64. HYPER.md \
  65. INSTALL \
  66. INSTALL.cmake \
  67. INSTALL.md \
  68. INTERNALS.md \
  69. KNOWN_BUGS \
  70. MAIL-ETIQUETTE \
  71. MQTT.md \
  72. NEW-PROTOCOL.md \
  73. options-in-versions \
  74. PARALLEL-TRANSFERS.md \
  75. README.md \
  76. RELEASE-PROCEDURE.md \
  77. ROADMAP.md \
  78. SECURITY-PROCESS.md \
  79. SSL-PROBLEMS.md \
  80. SSLCERTS.md \
  81. THANKS \
  82. TODO \
  83. TheArtOfHttpScripting.md \
  84. URL-SYNTAX.md \
  85. VERSIONS.md
  86. MAN2HTML= roffit $< >$@
  87. SUFFIXES = .1 .html .pdf
  88. # $(abs_builddir) is to disable VPATH when searching for this file, which
  89. # would otherwise find the copy in $(srcdir) which breaks the $(HUGE)
  90. # rule in src/Makefile.am in out-of-tree builds that references the file in the
  91. # build directory.
  92. #
  93. # First, seed the used copy of curl.1 with the prebuilt copy (in an out-of-tree
  94. # build), then run make recursively to rebuild it only if its dependencies
  95. # have changed.
  96. $(abs_builddir)/curl.1:
  97. if test "$(top_builddir)x" != "$(top_srcdir)x" -a -e "$(srcdir)/curl.1"; then \
  98. $(INSTALL_DATA) "$(srcdir)/curl.1" $@; fi
  99. cd cmdline-opts && $(MAKE)
  100. html: $(HTMLPAGES)
  101. cd libcurl && $(MAKE) html
  102. pdf: $(PDFPAGES)
  103. cd libcurl && $(MAKE) pdf
  104. .1.html:
  105. $(MAN2HTML)
  106. .1.pdf:
  107. @(foo=`echo $@ | sed -e 's/\.[0-9]$$//g'`; \
  108. groff -Tps -man $< >$$foo.ps; \
  109. ps2pdf $$foo.ps $@; \
  110. rm $$foo.ps; \
  111. echo "converted $< to $@")
  112. distclean:
  113. rm -f $(CLEANFILES)