Remove unused LDFLAGS.

This commit is contained in:
Alexander Andreev 2024-05-20 18:11:44 +04:00
parent 49c2cf90d4
commit 35894ebafc
Signed by: Arav
GPG Key ID: 25969B23DCB5CA34

View File

@ -10,7 +10,7 @@ CFLAGS := -std=c99 -O3 -Wall -Werror -Wextra -pedantic -flto
.PHONY: clean install uninstall test
${TARGET}: ${TARGET}.c
${CC} ${CFLAGS} ${LDFLAGS} $< -o $@
${CC} ${CFLAGS} $< -o $@
clean:
rm -f ${TARGET}