aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorNicholas Rodrigues Lordello <n@lordello.net>2025-08-18 01:01:38 +0200
committerNicholas Rodrigues Lordello <n@lordello.net>2025-08-18 01:01:38 +0200
commit156fb0c99955acff19ca2877ed5cc61078f0f480 (patch)
treed159c958036826c6fc61799cfc25d2663080ae57 /Makefile
parentMerge pull request #1623 from tttuuu888/work-issue-1622 (diff)
Fix `LDFLAGS` Usage in Makefile
This PR fixes what appears to be a typo `LDFLAGS` written with an additional `_` in the Makefile for setting the default linker flags for `libjanet`.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1270713a..505d1a70 100644
--- a/Makefile
+++ b/Makefile
@@ -54,7 +54,7 @@ HOSTAR?=$(AR)
# Symbols are (optionally) removed later, keep -g as default!
CFLAGS?=-O2 -g
LDFLAGS?=-rdynamic
-LIBJANET_LDFLAGS?=$(LD_FLAGS)
+LIBJANET_LDFLAGS?=$(LDFLAGS)
RUN:=$(RUN)