lua-arc4random

Cryptographically secure PRNG for Lua
Log | Files | Refs

commit fc1cf53fa04a979f60329e0239f5dfdb2d5a6422
parent 979e53b4997f4edb64ea507a68c332667728dc46
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Sun, 14 Feb 2016 10:06:21 +0000

Put LDFLAGS at the end

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

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