From 6e47a272b0a9491436ac732272be13431ee51161 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Bar=C4=87?= Date: Mon, 27 Jan 2025 14:33:14 +0100 Subject: [PATCH 1/2] makefile: add CURSES_CFLAGS to edlog rule MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maciej Barć --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 0d0734d..c2458e0 100644 --- a/makefile +++ b/makefile @@ -47,7 +47,7 @@ $(EDLOG): $(EDLOG_OBJS) $(CC) $(LDFLAGS) $^ -o $@ $(CURSES_LIBS) edlog.o: edlog.c edlog.h term.h - $(CC) $(CFLAGS) -c edlog.c + $(CC) $(CFLAGS) -c edlog.c $(CURSES_CFLAGS) install: $(NPL) $(EDLOG) mkdir -p $(DEST) -- 2.45.3