lua-bcrypt

Secure password hashing for Lua
Log | Files | Refs

commit a9ee4886c067b8d4040aaac79a2ebc86c05d3951
parent 1bbb2f6c4bb8831cb726e931593671149556b045
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Sun, 14 Feb 2016 10:06:43 +0000

Put LDFLAGS at the end, fix #8

Diffstat:
Makefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -13,7 +13,7 @@ debug: CFLAGS += -ggdb3 -UNDEBUG debug: all bcrypt.so: $(OBJS) - $(CC) -o bcrypt.so $(LDFLAGS) $(OBJS) + $(CC) -o bcrypt.so $(OBJS) $(LDFLAGS) clean: rm -f bcrypt.so