Makefile.inc 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. # These are all libcurl example programs to be test compiled
  25. check_PROGRAMS = \
  26. 10-at-a-time \
  27. altsvc \
  28. anyauthput \
  29. certinfo \
  30. chkspeed \
  31. cookie_interface \
  32. debug \
  33. externalsocket \
  34. fileupload \
  35. ftp-wildcard \
  36. ftpget \
  37. ftpgetinfo \
  38. ftpgetresp \
  39. ftpsget \
  40. ftpupload \
  41. ftpuploadfrommem \
  42. ftpuploadresume \
  43. getinfo \
  44. getinmemory \
  45. getredirect \
  46. getreferrer \
  47. headerapi \
  48. http-post \
  49. http2-download \
  50. http2-pushinmemory \
  51. http2-serverpush \
  52. http2-upload \
  53. http3 \
  54. http3-present \
  55. httpcustomheader \
  56. httpput \
  57. httpput-postfields \
  58. https \
  59. imap-append \
  60. imap-authzid \
  61. imap-copy \
  62. imap-create \
  63. imap-delete \
  64. imap-examine \
  65. imap-fetch \
  66. imap-list \
  67. imap-lsub \
  68. imap-multi \
  69. imap-noop \
  70. imap-search \
  71. imap-ssl \
  72. imap-store \
  73. imap-tls \
  74. multi-app \
  75. multi-debugcallback \
  76. multi-double \
  77. multi-formadd \
  78. multi-legacy \
  79. multi-post \
  80. multi-single \
  81. parseurl \
  82. persistent \
  83. pop3-authzid \
  84. pop3-dele \
  85. pop3-list \
  86. pop3-multi \
  87. pop3-noop \
  88. pop3-retr \
  89. pop3-ssl \
  90. pop3-stat \
  91. pop3-tls \
  92. pop3-top \
  93. pop3-uidl \
  94. post-callback \
  95. postinmemory \
  96. postit2 \
  97. postit2-formadd \
  98. progressfunc \
  99. protofeats \
  100. resolve \
  101. sendrecv \
  102. sepheaders \
  103. sftpget \
  104. sftpuploadresume \
  105. shared-connection-cache \
  106. simple \
  107. simplepost \
  108. simplessl \
  109. smtp-authzid \
  110. smtp-expn \
  111. smtp-mail \
  112. smtp-mime \
  113. smtp-multi \
  114. smtp-ssl \
  115. smtp-tls \
  116. smtp-vrfy \
  117. sslbackend \
  118. url2file \
  119. urlapi
  120. # These examples require external dependencies that may not be commonly
  121. # available on POSIX systems, so don't bother attempting to compile them here.
  122. COMPLICATED_EXAMPLES = \
  123. cacertinmem.c \
  124. crawler.c \
  125. ephiperfifo.c \
  126. evhiperfifo.c \
  127. ghiper.c \
  128. hiperfifo.c \
  129. href_extractor.c \
  130. htmltidy.c \
  131. htmltitle.cpp \
  132. multi-event.c \
  133. multi-uv.c \
  134. multithread.c \
  135. opensslthreadlock.c \
  136. sessioninfo.c \
  137. smooth-gtk-thread.c \
  138. synctime.c \
  139. threaded-ssl.c \
  140. usercertinmem.c \
  141. version-check.pl \
  142. xmlstream.c