From 731f73fd808e0a9c1203ee68e696bd3fbbc6d791 Mon Sep 17 00:00:00 2001 From: Nguyen Anh Quynh Date: Thu, 27 Mar 2014 17:54:27 +0800 Subject: [PATCH] Makefile: make config.mk the dependency of object files --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 2fd6b6d8..d1cc16c7 100644 --- a/Makefile +++ b/Makefile @@ -212,6 +212,8 @@ all: $(LIBRARY) $(ARCHIVE) $(PKGCFGF) $(LIBRARY): $(LIBOBJ) $(CC) $(LDFLAGS) $(LIBOBJ) -o $(LIBRARY) +$(LIBOBJ): config.mk + $(LIBOBJ_ARM): $(DEP_ARM) $(LIBOBJ_ARM64): $(DEP_ARM64) $(LIBOBJ_MIPS): $(DEP_MIPS)