From 55e807431059442a81bd71272fc2d4dfa6b26001 Mon Sep 17 00:00:00 2001 From: Chris Cromer Date: Thu, 22 Jul 2021 22:25:13 -0400 Subject: [PATCH] remove debug flags --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c678748..211aa33 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ CC=clang -CFLAGS=-Wall -Isrc/include -DDEBUG -g -std=c11 +CFLAGS=-Wall -Isrc/include -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