mirror of
https://github.com/lunarmodules/luasocket.git
synced 2024-11-08 14:28:21 +01:00
Merge pull request #361 from lunarmodules/docs
This commit is contained in:
commit
af0ddb6ea8
2
README
2
README
@ -3,7 +3,7 @@ and Linux.
|
|||||||
|
|
||||||
Please use the project page at GitHub
|
Please use the project page at GitHub
|
||||||
|
|
||||||
https://github.com/diegonehab/luasocket
|
https://github.com/lunarmodules/luasocket
|
||||||
|
|
||||||
to file bug reports or propose changes.
|
to file bug reports or propose changes.
|
||||||
|
|
||||||
|
@ -95,7 +95,7 @@ are it works well on most UNIX distributions and Windows flavors.
|
|||||||
|
|
||||||
<p>
|
<p>
|
||||||
The current version of the library can be found at
|
The current version of the library can be found at
|
||||||
the <a href="https://github.com/diegonehab/luasocket">LuaSocket
|
the <a href="https://github.com/lunarmodules/luasocket">LuaSocket
|
||||||
project page</a> on GitHub. Besides the full C and Lua source code
|
project page</a> on GitHub. Besides the full C and Lua source code
|
||||||
for the library, the distribution contains several examples,
|
for the library, the distribution contains several examples,
|
||||||
this user's manual and basic test procedures.
|
this user's manual and basic test procedures.
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
@ -127,7 +127,7 @@ build = {
|
|||||||
mingw32 = make_plat("mingw32")
|
mingw32 = make_plat("mingw32")
|
||||||
},
|
},
|
||||||
copy_directories = {
|
copy_directories = {
|
||||||
"doc"
|
"docs"
|
||||||
, "samples"
|
, "samples"
|
||||||
, "etc"
|
, "etc"
|
||||||
, "test" }
|
, "test" }
|
||||||
|
@ -92,23 +92,23 @@ MAKE = \
|
|||||||
socket.vcxproj \
|
socket.vcxproj \
|
||||||
mime.vcxproj
|
mime.vcxproj
|
||||||
|
|
||||||
DOC = \
|
DOCS = \
|
||||||
doc/dns.html \
|
docs/dns.html \
|
||||||
doc/ftp.html \
|
docs/ftp.html \
|
||||||
doc/index.html \
|
docs/index.html \
|
||||||
doc/http.html \
|
docs/http.html \
|
||||||
doc/installation.html \
|
docs/installation.html \
|
||||||
doc/introduction.html \
|
docs/introduction.html \
|
||||||
doc/ltn12.html \
|
docs/ltn12.html \
|
||||||
doc/luasocket.png \
|
docs/luasocket.png \
|
||||||
doc/mime.html \
|
docs/mime.html \
|
||||||
doc/reference.css \
|
docs/reference.css \
|
||||||
doc/reference.html \
|
docs/reference.html \
|
||||||
doc/smtp.html \
|
docs/smtp.html \
|
||||||
doc/socket.html \
|
docs/socket.html \
|
||||||
doc/tcp.html \
|
docs/tcp.html \
|
||||||
doc/udp.html \
|
docs/udp.html \
|
||||||
doc/url.html
|
docs/url.html
|
||||||
|
|
||||||
dist:
|
dist:
|
||||||
mkdir -p $(DIST)
|
mkdir -p $(DIST)
|
||||||
@ -123,8 +123,8 @@ dist:
|
|||||||
mkdir -p $(DIST)/src
|
mkdir -p $(DIST)/src
|
||||||
cp -vf $(SRC) $(DIST)/src
|
cp -vf $(SRC) $(DIST)/src
|
||||||
|
|
||||||
mkdir -p $(DIST)/doc
|
mkdir -p $(DIST)/docs
|
||||||
cp -vf $(DOC) $(DIST)/doc
|
cp -vf $(DOCS) $(DIST)/docs
|
||||||
|
|
||||||
mkdir -p $(DIST)/samples
|
mkdir -p $(DIST)/samples
|
||||||
cp -vf $(SAMPLES) $(DIST)/samples
|
cp -vf $(SAMPLES) $(DIST)/samples
|
||||||
|
Loading…
Reference in New Issue
Block a user