From 0cc3a2176bd396a35f44fcc28ec916b41f019e16 Mon Sep 17 00:00:00 2001 From: Stefan Zabka Date: Wed, 13 May 2020 19:55:28 +0200 Subject: Made a shell that can exit --- 02_exercise/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '02_exercise/Makefile') diff --git a/02_exercise/Makefile b/02_exercise/Makefile index c43966f..5d1b360 100644 --- a/02_exercise/Makefile +++ b/02_exercise/Makefile @@ -6,7 +6,7 @@ SRC = $(wildcard *.c) OBJ = $(SRC:%.c=%.o) PCK = lab-2.zip -CFLAGS = -std=gnu11 -c -g -Os -Wall -Werror -MMD -MP +CFLAGS = -std=gnu11 -c -g -Os -Wall -Werror -MMD -MP -D=_GNU_SOURCE DEP = $(OBJ:%.o=%.d) -include $(DEP) -- cgit v1.2.3-54-g00ecf