summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2020-08-23 09:56:54 +0200
committerThomas Schmucker <ts@its1.de>2020-08-23 09:56:54 +0200
commit165e06e7544cae2b2f0932f4c2dab26bf06a5326 (patch)
treedc13647ac5f2e868983d21ace4f763b3b770b11a /makefile
downloaduse-bcrypt-165e06e7544cae2b2f0932f4c2dab26bf06a5326.tar.gz
use-bcrypt-165e06e7544cae2b2f0932f4c2dab26bf06a5326.tar.bz2
use-bcrypt-165e06e7544cae2b2f0932f4c2dab26bf06a5326.zip
erster Prototyp
Diffstat (limited to 'makefile')
-rw-r--r--makefile9
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 @@
1all: bcrypt-test
2
3CFLAGS =-Wall -Werror -std=c99 -pedantic -O2
4
5bcrypt-test: bcrypt-test.o
6 cc -o $@ bcrypt-test.o lua-bcrypt/bcrypt.a
7
8bcrypt-test.o: bcrypt-test.c
9 cc -o $@ -c $<