diff options
Diffstat (limited to 'makefile')
| -rw-r--r-- | makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/makefile b/makefile new file mode 100644 index 0000000..b598b34 --- /dev/null +++ b/makefile | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | all: bcrypt-test | ||
| 2 | |||
| 3 | CFLAGS =-Wall -Werror -std=c99 -pedantic -O2 | ||
| 4 | |||
| 5 | bcrypt-test: bcrypt-test.o | ||
| 6 | cc -o $@ bcrypt-test.o lua-bcrypt/bcrypt.a | ||
| 7 | |||
| 8 | bcrypt-test.o: bcrypt-test.c | ||
| 9 | cc -o $@ -c $< | ||
