commit db48c99467b4fae2152c7db8afa4389f2053112b
parent 2b97f0c025e84abb6b49df242bade511a24e19b9
Author: Jacob R. Edwards <jacobouno@protonmail.com>
Date: Wed, 6 Jan 2021 02:04:18 -0800
Remove unused variables in Makefile
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
@@ -12,7 +12,7 @@ CFLAGS = -std=c99 -Wall -pedantic -O2
all: ${TARGET}
.c.o:
- ${CC} ${LDFLAGS} -c ${CFLAGS} $<
+ ${CC} -c ${CFLAGS} $<
${OBJS}: Makefile config.def.h
@@ -20,7 +20,7 @@ config.h:
cp config.def.h $@
${TARGET}: config.h ${OBJS}
- ${CC} -o $@ ${OBJS} ${LDLIBS}
+ ${CC} -o $@ ${OBJS}
clean:
rm -f ${TARGET} ${OBJS}