Add all prereqs to linker flags

This commit is contained in:
Alex D. 2021-11-13 19:49:58 +00:00
parent 7a6093f175
commit 94892fa5dd
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