Makefile.inc 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. #***************************************************************************
  2. # _ _ ____ _
  3. # Project ___| | | | _ \| |
  4. # / __| | | | |_) | |
  5. # | (__| |_| | _ <| |___
  6. # \___|\___/|_| \_\_____|
  7. #
  8. # Copyright (C) 1998 - 2021, Daniel Stenberg, <[email protected]>, 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. http-post \
  47. http2-download \
  48. http2-pushinmemory \
  49. http2-serverpush \
  50. http2-upload \
  51. http3 \
  52. http3-present \
  53. httpcustomheader \
  54. httpput \
  55. httpput-postfields \
  56. https \
  57. imap-append \
  58. imap-authzid \
  59. imap-copy \
  60. imap-create \
  61. imap-delete \
  62. imap-examine \
  63. imap-fetch \
  64. imap-list \
  65. imap-lsub \
  66. imap-multi \
  67. imap-noop \
  68. imap-search \
  69. imap-ssl \
  70. imap-store \
  71. imap-tls \
  72. multi-app \
  73. multi-debugcallback \
  74. multi-double \
  75. multi-formadd \
  76. multi-legacy \
  77. multi-post \
  78. multi-single \
  79. parseurl \
  80. persistent \
  81. pop3-authzid \
  82. pop3-dele \
  83. pop3-list \
  84. pop3-multi \
  85. pop3-noop \
  86. pop3-retr \
  87. pop3-ssl \
  88. pop3-stat \
  89. pop3-tls \
  90. pop3-top \
  91. pop3-uidl \
  92. post-callback \
  93. postinmemory \
  94. postit2 \
  95. postit2-formadd \
  96. progressfunc \
  97. resolve \
  98. rtsp \
  99. sendrecv \
  100. sepheaders \
  101. sftpget \
  102. sftpuploadresume \
  103. shared-connection-cache \
  104. simple \
  105. simplepost \
  106. simplessl \
  107. smtp-authzid \
  108. smtp-expn \
  109. smtp-mail \
  110. smtp-mime \
  111. smtp-multi \
  112. smtp-ssl \
  113. smtp-tls \
  114. smtp-vrfy \
  115. sslbackend \
  116. url2file \
  117. urlapi
  118. # These examples require external dependencies that may not be commonly
  119. # available on POSIX systems, so don't bother attempting to compile them here.
  120. COMPLICATED_EXAMPLES = \
  121. cacertinmem.c \
  122. crawler.c \
  123. curlgtk.c \
  124. curlx.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. sampleconv.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