From 2f795be62669796be41c52d565c9d29e69fb0cc1 Mon Sep 17 00:00:00 2001 From: Cameron Blankenbuehler Date: Thu, 30 Mar 2023 12:05:23 -0400 Subject: [PATCH] Add debug information to compilation flags --- src/boggler/c/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/boggler/c/Makefile b/src/boggler/c/Makefile index 746bd6d..32456a8 100644 --- a/src/boggler/c/Makefile +++ b/src/boggler/c/Makefile @@ -1,5 +1,5 @@ CC = gcc -CFLAGS = -Wall -Werror -std=c17 +CFLAGS = -Wall -Werror -std=gnu17 -g3 OBJS = boggler.o all: $(OBJS)