From 16beb6f8acd5e589be11168ab6c1944c4411052e Mon Sep 17 00:00:00 2001 From: Quentin Rameau Date: Tue, 9 Oct 2018 12:26:32 +0200 Subject: [PATCH] Makefile: fix dependencies --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 10505f3..cdbd8ad 100644 --- a/Makefile +++ b/Makefile @@ -24,9 +24,9 @@ options: config.h: cp config.def.h $@ -$(OBJ): config.h config.mk +$(OBJ): config.h common.h config.mk -$(WEBEXTOBJ): config.h config.mk +$(WEBEXTOBJ): $(WEBEXTSRC) config.h common.h config.mk $(CC) $(WEBEXTCFLAGS) $(CFLAGS) -c $(WEBEXTSRC) libsurf-webext.so: $(WEBEXTOBJ) -- 2.20.1