From 165e06e7544cae2b2f0932f4c2dab26bf06a5326 Mon Sep 17 00:00:00 2001 From: Thomas Schmucker Date: Sun, 23 Aug 2020 09:56:54 +0200 Subject: erster Prototyp --- makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 makefile (limited to 'makefile') diff --git a/makefile b/makefile new file mode 100644 index 0000000..b598b34 --- /dev/null +++ b/makefile @@ -0,0 +1,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 $< -- cgit v1.3