summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuentin Carbonneaux2023-02-02 10:40:06 +0100
committerQuentin Carbonneaux2023-02-02 10:40:06 +0100
commite8fdea1df28fd08f4a8d150ddf99f1eb530f0e0f (patch)
tree07793b14a43afb9a2086973d7cea6ae5ef1e98b1
parent490f194d9146d3c41ea804047a539fda2f025800 (diff)
use LDLIBS instead of LDFLAGS
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1db2305..eeb3957 100644
--- 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