aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/makefile b/src/makefile
index 9a97dd3..a21a346 100644
--- a/src/makefile
+++ b/src/makefile
@@ -10,6 +10,7 @@ include ../config
10#------ 10#------
11# Modules belonging to socket-core 11# Modules belonging to socket-core
12# 12#
13
13SOCKET_OBJS:= \ 14SOCKET_OBJS:= \
14 $(COMPAT)/compat-5.1.o \ 15 $(COMPAT)/compat-5.1.o \
15 luasocket.o \ 16 luasocket.o \
@@ -48,13 +49,13 @@ UNIX_OBJS:=\
48all: $(SOCKET_SO) $(MIME_SO) 49all: $(SOCKET_SO) $(MIME_SO)
49 50
50$(SOCKET_SO): $(SOCKET_OBJS) 51$(SOCKET_SO): $(SOCKET_OBJS)
51 $(LD) $(LDFLAGS) -o $@ $^ 52 $(LD) $(LDFLAGS) -o $@ $(SOCKET_OBJS)
52 53
53$(MIME_SO): $(MIME_OBJS) 54$(MIME_SO): $(MIME_OBJS)
54 $(LD) $(LDFLAGS) -o $@ $^ 55 $(LD) $(LDFLAGS) -o $@ $(MIME_OBJS)
55 56
56$(UNIX_SO): $(UNIX_OBJS) 57$(UNIX_SO): $(UNIX_OBJS)
57 $(LD) $(LDFLAGS) -o $@ $^ 58 $(LD) $(LDFLAGS) -o $@ $(UNIX_OBJS)
58 59
59#------ 60#------
60# List of dependencies 61# List of dependencies