From 38f7b12763bd7632da7038e36218a7fd97f9aa69 Mon Sep 17 00:00:00 2001 From: Turiiya <34311583+ttytm@users.noreply.github.com> Date: Sat, 23 Sep 2023 02:17:28 +0200 Subject: [PATCH] Fix text editor debug build --- examples/C/text-editor/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/C/text-editor/Makefile b/examples/C/text-editor/Makefile index b4f559cc0..9a561c1b8 100644 --- a/examples/C/text-editor/Makefile +++ b/examples/C/text-editor/Makefile @@ -47,7 +47,7 @@ all: release debug: --setup @echo "Build Text Editor Example ($@)..." - @$(CC) -g -Wall $(LDFLAGS) -o $(OUT) + @$(CC) -g -Wall $(CFLAGS) $(LDFLAGS) -o $(OUT) @echo "Done." release: --setup