all: bcrypt-test

CFLAGS =-Wall -Werror -std=c99 -pedantic -O2

bcrypt-test: bcrypt-test.o
	cc -o $@ bcrypt-test.o lua-bcrypt/bcrypt.a

bcrypt-test.o: bcrypt-test.c
	cc -o $@ -c $<
