From 1477bc8598939c47c854a72b25eda1fd835f3dac Mon Sep 17 00:00:00 2001 From: Chris Cromer Date: Mon, 26 Jul 2021 01:20:57 -0400 Subject: [PATCH] readd debug symbols into the binary --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2a543bd..87cf741 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CC=clang -CFLAGS=-Wall -Isrc/include -std=c11 +CFLAGS=-Wall -Isrc/include -g -std=c11 LDFLAGS= FILENAME=myshellin SRC=src/myshellin.c src/loop.c src/console_line.c src/array.c src/builtins.c src/launch.c src/utils.c src/redirect.c