blob: b598b34745052055c6978dc3804ca698376f077e (
plain)
1
2
3
4
5
6
7
8
9
|
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 $<
|