lua-bcrypt

Secure password hashing for Lua
Log | Files | Refs

commit 94c2b71f62b90efcfbff5df34dad39fda4b7cd0c
parent 7484ca91671978e34f9948b59a816b9dda35a780
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Mon,  5 May 2014 13:42:21 +0100

Don't need LIBS in Makefile

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

diff --git a/Makefile b/Makefile @@ -3,7 +3,6 @@ OBJECTS = $(patsubst %.c,%.o,$(SOURCES)) TARGET = bcrypt.so -LIBS = CFLAGS = -O2 -shared -fPIC -std=c99 -D_GNU_SOURCE -Wall -Wextra -Wno-nonnull -Wwrite-strings -Wformat=2 -DNDEBUG -Ilib/bcrypt BCRYPT_OBJECTS = lib/bcrypt/crypt_blowfish.o lib/bcrypt/x86.o lib/bcrypt/crypt_gensalt.o lib/bcrypt/wrapper.o @@ -23,7 +22,7 @@ lib/bcrypt/%.o: make -C lib/bcrypt $(TARGET): $(OBJECTS) $(BCRYPT_OBJECTS) - $(CC) -o $(TARGET) $^ $(CFLAGS) $(LIBS) + $(CC) -o $(TARGET) $^ $(CFLAGS) test: make -C lib/bcrypt check