about summary refs log tree commit diff stats
path: root/src/luasec/luasocket/Makefile
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-11-22 17:37:41 -0800
committerKartik K. Agaram <vc@akkartik.com>2021-11-22 17:37:41 -0800
commit70a2e1db1dd4e4aa0c01e2dfb50499123d69967c (patch)
treeffe20a9284cfa95918a9995fcb74c36afe7ffece /src/luasec/luasocket/Makefile
parentfe9708fd29d8def5245ba300b671824f23d429e4 (diff)
downloadteliva-70a2e1db1dd4e4aa0c01e2dfb50499123d69967c.tar.gz
delete most of the embedded luasocket in luasec
Hilariously, I wasn't linking against it in the first place.
Diffstat (limited to 'src/luasec/luasocket/Makefile')
-rw-r--r--src/luasec/luasocket/Makefile26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/luasec/luasocket/Makefile b/src/luasec/luasocket/Makefile
deleted file mode 100644
index b700fb6..0000000
--- a/src/luasec/luasocket/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-OBJS= \
- io.o \
- buffer.o \
- timeout.o \
- usocket.o
-
-CC	?= cc
-CFLAGS	+= $(MYCFLAGS) -DLUASOCKET_DEBUG
-AR	?= ar
-RANLIB	?= ranlib
-
-.PHONY: all clean
-
-all: libluasocket.a
-
-libluasocket.a: $(OBJS)
-	$(AR) rcu $@ $(OBJS)
-	$(RANLIB) $@
-
-clean:
-	rm -f $(OBJS) libluasocket.a
-
-buffer.o: buffer.c buffer.h io.h timeout.h
-io.o: io.c io.h timeout.h
-timeout.o: timeout.c timeout.h
-usocket.o: usocket.c socket.h io.h timeout.h usocket.h