blob: f98f66c34273c10188a190deceb19038e2835269 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
all: bcrypt-test
CFLAGS =-Wall -Werror -std=c99 -pedantic -g
bcrypt-test: bcrypt-test.o
cc -o $@ bcrypt-test.o lua-bcrypt/bcrypt.a
bcrypt-test.o: bcrypt-test.c
cc $(CFLAGS) -o $@ -c $<
.PHONY: clean
clean:
rm -f bcrypt-test bcrypt-test.o
|