From d2664c07b5b41293f3786f6c292be6186f8cfb14 Mon Sep 17 00:00:00 2001 From: Patrick Steinhardt Date: Mon, 18 Jun 2018 08:01:12 +0200 Subject: [PATCH] Makefile: add dependency on scripts.h to input.o While "input.c" includes "scripts/scripts.h", which is generated dynamically by the build system, the Makefile does not state a dependency of "input.c" on "scripts/scripts.h". Add the dependency to fix broken builds. --- src/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Makefile b/src/Makefile index ba4cb0a..6ca4e5e 100644 --- a/src/Makefile +++ b/src/Makefile @@ -16,6 +16,8 @@ vimb.so: $(OBJ) $(OBJ): config.h ../config.mk +input.o: scripts/scripts.h + normal.o: scripts/scripts.h setting.o: scripts/scripts.h -- 2.20.1