summaryrefslogtreecommitdiffstats
path: root/02_exercise/Makefile
diff options
context:
space:
mode:
authorStefan Zabka <zabkaste@hu-berlin.de>2020-05-13 19:55:28 +0200
committerStefan Zabka <zabkaste@hu-berlin.de>2020-05-13 19:55:28 +0200
commit0cc3a2176bd396a35f44fcc28ec916b41f019e16 (patch)
tree0c90b0ef0f2fbd26b380809d1b9c3f9d445116f8 /02_exercise/Makefile
parent97a8aad5493bab671e56eb25539b81e31d58c11a (diff)
downloadbetriebssysteme-0cc3a2176bd396a35f44fcc28ec916b41f019e16.tar.gz
betriebssysteme-0cc3a2176bd396a35f44fcc28ec916b41f019e16.zip
Made a shell that can exit
Diffstat (limited to '02_exercise/Makefile')
-rw-r--r--02_exercise/Makefile2
1 files changed, 1 insertions, 1 deletions
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)