aboutsummaryrefslogtreecommitdiff
path: root/makefile.dist
diff options
context:
space:
mode:
authorCaleb Maclennan <caleb@alerque.com>2023-11-10 09:12:04 +0300
committerCaleb Maclennan <caleb@alerque.com>2023-11-10 09:12:04 +0300
commit5c4fc93d5f4137bf4c22ddf1a048c907a4a26727 (patch)
treea9a68e1f6a9c3bfe2b64fa1c3a4098865b7d3b5d /makefile.dist
parentccef3bc4e2aa6ee5b997a80aabb58f4ff0b0e98f (diff)
parent43a97b7f0053313b43906371dbdc226271e6c8ab (diff)
downloadluasocket-hjelmeland-patch-1.tar.gz
luasocket-hjelmeland-patch-1.tar.bz2
luasocket-hjelmeland-patch-1.zip
Merge branch 'master' into hjelmeland-patch-1hjelmeland-patch-1
Diffstat (limited to '')
-rw-r--r--makefile.dist72
1 files changed, 33 insertions, 39 deletions
diff --git a/makefile.dist b/makefile.dist
index 45a8866..5ef44d3 100644
--- a/makefile.dist
+++ b/makefile.dist
@@ -1,7 +1,7 @@
1#-------------------------------------------------------------------------- 1#--------------------------------------------------------------------------
2# Distribution makefile 2# Distribution makefile
3#-------------------------------------------------------------------------- 3#--------------------------------------------------------------------------
4DIST = luasocket-3.0-rc1 4DIST = luasocket-3.0.0
5 5
6TEST = \ 6TEST = \
7 test/README \ 7 test/README \
@@ -22,20 +22,17 @@ SAMPLES = \
22 samples/lpr.lua \ 22 samples/lpr.lua \
23 samples/talker.lua \ 23 samples/talker.lua \
24 samples/tinyirc.lua 24 samples/tinyirc.lua
25 25 samples/b64.lua \
26ETC = \ 26 samples/check-links.lua \
27 etc/README \ 27 samples/check-memory.lua \
28 etc/b64.lua \ 28 samples/dict.lua \
29 etc/check-links.lua \ 29 samples/dispatch.lua \
30 etc/check-memory.lua \ 30 samples/eol.lua \
31 etc/dict.lua \ 31 samples/forward.lua \
32 etc/dispatch.lua \ 32 samples/get.lua \
33 etc/eol.lua \ 33 samples/lp.lua \
34 etc/forward.lua \ 34 samples/qp.lua \
35 etc/get.lua \ 35 samples/tftp.lua
36 etc/lp.lua \
37 etc/qp.lua \
38 etc/tftp.lua
39 36
40SRC = \ 37SRC = \
41 src/makefile \ 38 src/makefile \
@@ -92,39 +89,36 @@ MAKE = \
92 socket.vcxproj \ 89 socket.vcxproj \
93 mime.vcxproj 90 mime.vcxproj
94 91
95DOC = \ 92DOCS = \
96 doc/dns.html \ 93 docs/dns.html \
97 doc/ftp.html \ 94 docs/ftp.html \
98 doc/index.html \ 95 docs/index.html \
99 doc/http.html \ 96 docs/http.html \
100 doc/installation.html \ 97 docs/installation.html \
101 doc/introduction.html \ 98 docs/introduction.html \
102 doc/ltn12.html \ 99 docs/ltn12.html \
103 doc/luasocket.png \ 100 docs/luasocket.png \
104 doc/mime.html \ 101 docs/mime.html \
105 doc/reference.css \ 102 docs/reference.css \
106 doc/reference.html \ 103 docs/reference.html \
107 doc/smtp.html \ 104 docs/smtp.html \
108 doc/socket.html \ 105 docs/socket.html \
109 doc/tcp.html \ 106 docs/tcp.html \
110 doc/udp.html \ 107 docs/udp.html \
111 doc/url.html 108 docs/url.html
112 109
113dist: 110dist:
114 mkdir -p $(DIST) 111 mkdir -p $(DIST)
115 cp -vf NEW $(DIST) 112 cp -vf CHANGELOG.md $(DIST)
116 cp -vf LICENSE $(DIST) 113 cp -vf LICENSE $(DIST)
117 cp -vf README $(DIST) 114 cp -vf README.md $(DIST)
118 cp -vf $(MAKE) $(DIST) 115 cp -vf $(MAKE) $(DIST)
119 116
120 mkdir -p $(DIST)/etc
121 cp -vf $(ETC) $(DIST)/etc
122
123 mkdir -p $(DIST)/src 117 mkdir -p $(DIST)/src
124 cp -vf $(SRC) $(DIST)/src 118 cp -vf $(SRC) $(DIST)/src
125 119
126 mkdir -p $(DIST)/doc 120 mkdir -p $(DIST)/docs
127 cp -vf $(DOC) $(DIST)/doc 121 cp -vf $(DOCS) $(DIST)/docs
128 122
129 mkdir -p $(DIST)/samples 123 mkdir -p $(DIST)/samples
130 cp -vf $(SAMPLES) $(DIST)/samples 124 cp -vf $(SAMPLES) $(DIST)/samples