1
0
mirror of https://github.com/janet-lang/janet synced 2025-09-01 18:38:04 +00:00

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`.
This commit is contained in:
Nicholas Rodrigues Lordello
2025-08-18 01:01:38 +02:00
parent bf34340737
commit 156fb0c999

View File

@@ -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)