From b355772b2b19ce4ff198560c2582351405ffa3e2 Mon Sep 17 00:00:00 2001 From: JugglingSuns120 <107227518+JugglingSuns120@users.noreply.github.com> Date: Tue, 25 Mar 2025 21:52:30 -0400 Subject: [PATCH] Update Makefile added -lncurses to the LIBS in the makefile to include the appropriate libraries. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1da5c0dd..8aaa78a6 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ CFLAGS = $(DIALECT) -W -D_GNU_SOURCE -D_DEFAULT_SOURCE -Wall -Werror -fno-common CFLAGS += -DMODES_READSB_VERSION=\"$(READSB_VERSION)\" CFLAGS += -Wdate-time -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-strong -Wformat -Werror=format-security -LIBS = -pthread -lpthread -lm -lrt -lzstd +LIBS = -pthread -lpthread -lm -lrt -lzstd -lncurses ifeq ($(ZLIB_STATIC), yes) LIBS += -l:libz.a