From da07e198989c08f28f63c24fd56742bafd5ed275 Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Sat, 8 Jul 2017 11:45:23 +0100 Subject: Update Makefile to not link the modules against the interpreter --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ff8e1cc..1473d36 100644 --- a/Makefile +++ b/Makefile @@ -36,7 +36,7 @@ lua-5.1-install: lua-5.1 $(INSTALL) -m 755 scrypt-5.1.so $(INST_LIBDIR)/scrypt.so scrypt-5.1.so: luascrypt.c base64.c - $(CC) $(CFLAGS) $(LUA51_INC) -shared -o $@ $^ $(LUA51_LIB) $(SCRYPT_LIBS) + $(CC) $(CFLAGS) $(LUA51_INC) -shared -o $@ $^ $(SCRYPT_LIBS) .PHONY: lua-5.2 lua-5.2: scrypt-5.2.so @@ -49,7 +49,7 @@ lua-5.2-install: lua-5.2 $(INSTALL) -m 755 scrypt-5.2.so $(INST_LIBDIR)/scrypt.so scrypt-5.2.so: luascrypt.c base64.c - $(CC) $(CFLAGS) $(LUA52_INC) -shared -o $@ $^ $(LUA52_LIB) $(SCRYPT_LIBS) + $(CC) $(CFLAGS) $(LUA52_INC) -shared -o $@ $^ $(SCRYPT_LIBS) .PHONY: doc doc: -- cgit v1.2.1