Makefile.inc 3.2 KB

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