diff options
author | Sam Roberts <vieuxtech@gmail.com> | 2011-09-27 12:54:51 -0700 |
---|---|---|
committer | Sam Roberts <vieuxtech@gmail.com> | 2012-04-11 13:45:59 -0700 |
commit | 1f704cfb89324fd7b7cc6f92ea7fa66c7a46846c (patch) | |
tree | b22e3a137de811d0c1c46dfec58681e820b3009b /src/makefile | |
parent | 826589afcd17c7d7cffaae7613e1201b9777742c (diff) | |
download | luasocket-1f704cfb89324fd7b7cc6f92ea7fa66c7a46846c.tar.gz luasocket-1f704cfb89324fd7b7cc6f92ea7fa66c7a46846c.tar.bz2 luasocket-1f704cfb89324fd7b7cc6f92ea7fa66c7a46846c.zip |
Add all-unix and install-unix targets which include all modules supported on unix.
Besides standard socket and mime modules, this includes unix domain
socket support.
Diffstat (limited to '')
-rw-r--r-- | src/makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/makefile b/src/makefile index b614f77..6ec8718 100644 --- a/src/makefile +++ b/src/makefile | |||
@@ -55,6 +55,8 @@ $(SOCKET_SO): $(SOCKET_OBJS) | |||
55 | $(MIME_SO): $(MIME_OBJS) | 55 | $(MIME_SO): $(MIME_OBJS) |
56 | $(LD) $(LDFLAGS) -o $@ $(MIME_OBJS) | 56 | $(LD) $(LDFLAGS) -o $@ $(MIME_OBJS) |
57 | 57 | ||
58 | all-unix: all $(UNIX_SO) | ||
59 | |||
58 | $(UNIX_SO): $(UNIX_OBJS) | 60 | $(UNIX_SO): $(UNIX_OBJS) |
59 | $(LD) $(LDFLAGS) -o $@ $(UNIX_OBJS) | 61 | $(LD) $(LDFLAGS) -o $@ $(UNIX_OBJS) |
60 | 62 | ||