Makefile.inc 3.0 KB

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