Add all prereqs to linker flags

This commit is contained in:
Alex D. 2021-11-13 19:49:40 +00:00
parent 85e981f29c
commit 12b6867f46
Signed by: caskd
GPG Key ID: F92BA85F61F4C173
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ clean:
ifneq (${BIN},)
${BIN}: ${OBJ}
${CC} -o "$@" ${LDFLAGS} $?
${CC} -o "$@" ${LDFLAGS} $^
endif
.PHONY: all clean