diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,6 +1,9 @@ CC=gcc -CFLAGS=-Wall -Wextra -Wpedantic -g -LDFLAGS=-lncurses +#CFLAGS=-Wall -Wextra -Wpedantic -g +#LDFLAGS=-lncurses + +CFLAGS = -Wall -Wextra -Wpedantic -g -fsanitize=address +LDFLAGS = -lncurses -fsanitize=address TARGET=sf @@ -23,3 +26,4 @@ test: $(TARGET) clean: rm -f $(OBJS) $(TARGET) + rm ./asan.log* |
