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 --- .gitignore | 2 ++ makefile | 8 ++++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index a3500e5..cf17be8 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,5 @@ lua-bcrypt *.o bcrypt-test +tags +user.db 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