summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2017-07-08 11:45:23 +0100
committerDaniel Silverstone <dsilvers@digital-scurf.org>2017-07-08 11:45:23 +0100
commitda07e198989c08f28f63c24fd56742bafd5ed275 (patch)
tree42418abf5b52bddfc349398c6f9542cfeae2c937
parentc4bcad88ed718a3041899d0719e7b9e571abdfaf (diff)
downloadlua-scrypt-git-dsilvers/link-fixup.tar.gz
Update Makefile to not link the modules against the interpreterv1.2dsilvers/link-fixup
-rw-r--r--Makefile4
1 files 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: