commit e8fdea1df28fd08f4a8d150ddf99f1eb530f0e0f
parent 490f194d9146d3c41ea804047a539fda2f025800
Author: Quentin Carbonneaux <quentin@c9x.me>
Date: Thu, 2 Feb 2023 10:40:06 +0100
use LDLIBS instead of LDFLAGS
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -1,7 +1,7 @@
BIN = irc
CFLAGS = -std=c99 -Os -D_POSIX_C_SOURCE=201112 -D_GNU_SOURCE -D_XOPEN_CURSES -D_XOPEN_SOURCE_EXTENDED=1 -D_DEFAULT_SOURCE -D_BSD_SOURCE
-LDFLAGS = -lncursesw -lssl -lcrypto
+LDLIBS = -lncursesw -lssl -lcrypto
PREFIX=/usr/local