From 44bf68e036ac68166695cb07c7713fab69914615 Mon Sep 17 00:00:00 2001 From: Thomas Schmucker Date: Tue, 25 Aug 2020 17:07:18 +0200 Subject: Projektdateien (.gitignore, makefile) aktualisiert --- makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index b598b34..f98f66c 100644 --- a/makefile +++ b/makefile @@ -1,9 +1,13 @@ all: bcrypt-test -CFLAGS =-Wall -Werror -std=c99 -pedantic -O2 +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 -o $@ -c $< + cc $(CFLAGS) -o $@ -c $< + +.PHONY: clean +clean: + rm -f bcrypt-test bcrypt-test.o -- cgit v1.3