aboutsummaryrefslogtreecommitdiff
path: root/src/makefile
diff options
context:
space:
mode:
authorDiego Nehab <diego.nehab@gmail.com>2015-08-21 15:39:34 -0300
committerDiego Nehab <diego.nehab@gmail.com>2015-08-21 15:39:34 -0300
commite75444ccd1f30a3b5fbc7cec4a85e831bd0560ed (patch)
tree71475c18fee070c770fc0fe25d0859b7d54c8fbb /src/makefile
parent321c0c9b1f7b6b83cd83b58e7e259f53eca69373 (diff)
downloadluasocket-e75444ccd1f30a3b5fbc7cec4a85e831bd0560ed.tar.gz
luasocket-e75444ccd1f30a3b5fbc7cec4a85e831bd0560ed.tar.bz2
luasocket-e75444ccd1f30a3b5fbc7cec4a85e831bd0560ed.zip
New compat.h module implements luaL_setfuncs.
Makes initialization code simpler everywhere.
Diffstat (limited to 'src/makefile')
-rw-r--r--src/makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/makefile b/src/makefile
index 7f118a7..2704a92 100644
--- a/src/makefile
+++ b/src/makefile
@@ -260,6 +260,7 @@ SOCKET_OBJS= \
260 buffer.$(O) \ 260 buffer.$(O) \
261 io.$(O) \ 261 io.$(O) \
262 auxiliar.$(O) \ 262 auxiliar.$(O) \
263 compat.$(O) \
263 options.$(O) \ 264 options.$(O) \
264 inet.$(O) \ 265 inet.$(O) \
265 $(SOCKET) \ 266 $(SOCKET) \
@@ -272,7 +273,8 @@ SOCKET_OBJS= \
272# Modules belonging mime-core 273# Modules belonging mime-core
273# 274#
274MIME_OBJS= \ 275MIME_OBJS= \
275 mime.$(O) 276 mime.$(O) \
277 compat.$(O)
276 278
277#------ 279#------
278# Modules belonging unix (local domain sockets) 280# Modules belonging unix (local domain sockets)
@@ -383,6 +385,7 @@ clean:
383#------ 385#------
384# List of dependencies 386# List of dependencies
385# 387#
388compat.$(O): compat.c compat.h
386auxiliar.$(O): auxiliar.c auxiliar.h 389auxiliar.$(O): auxiliar.c auxiliar.h
387buffer.$(O): buffer.c buffer.h io.h timeout.h 390buffer.$(O): buffer.c buffer.h io.h timeout.h
388except.$(O): except.c except.h 391except.$(O): except.c except.h