From d0c77730ed2056b05e5a379f7765d51cac4c23cc Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 30 Sep 2020 14:57:38 +0200 Subject: [PATCH] include/README: convert to markdown Closes #6028 --- include/Makefile.am | 2 +- include/README | 18 ------------------ include/README.md | 14 ++++++++++++++ 3 files changed, 15 insertions(+), 19 deletions(-) delete mode 100644 include/README create mode 100644 include/README.md diff --git a/include/Makefile.am b/include/Makefile.am index e33aecc001..611ebdfaa5 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -21,6 +21,6 @@ ########################################################################### SUBDIRS = curl -EXTRA_DIST = README +EXTRA_DIST = README.md AUTOMAKE_OPTIONS = foreign no-dependencies diff --git a/include/README b/include/README deleted file mode 100644 index 091ef76d10..0000000000 --- a/include/README +++ /dev/null @@ -1,18 +0,0 @@ - _ _ ____ _ - ___| | | | _ \| | - / __| | | | |_) | | - | (__| |_| | _ <| |___ - \___|\___/|_| \_\_____| - -Include files for libcurl, external users. - -They're all placed in the curl subdirectory here for better fit in any kind -of environment. You must include files from here using... - - #include - -... style and point the compiler's include path to the directory holding the -curl subdirectory. It makes it more likely to survive future modifications. - -The public curl include files can be shared freely between different platforms -and different architectures. diff --git a/include/README.md b/include/README.md new file mode 100644 index 0000000000..bd28a30e85 --- /dev/null +++ b/include/README.md @@ -0,0 +1,14 @@ +# include + +Public include files for libcurl, external users. + +They're all placed in the curl subdirectory here for better fit in any kind of +environment. You must include files from here using... + + #include + +... style and point the compiler's include path to the directory holding the +curl subdirectory. It makes it more likely to survive future modifications. + +The public curl include files can be shared freely between different platforms +and different architectures.