commit e607a1214c4407c645a12945de2a051fdbf2dae9 parent 5908e999513f7c062ede0ecb8653cc8688ac4399 Author: Hiltjo Posthuma <hiltjo@codemadness.org> Date: Wed, 24 Jun 2020 20:01:13 +0200 Makefile: add object dependency Fixes an issue with gmake. Thanks lich for reporting it. Diffstat:
M | Makefile | | | 2 | ++ |
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile @@ -29,6 +29,8 @@ ${BIN}: ${@:=.o} OBJ = ${SRC:.c=.o} +${OBJ}: + .o: ${CC} ${SFEED_LDFLAGS} -o $@ $<