summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmaury Pouly <amaury.pouly@gmail.com>2016-11-07 10:49:01 +0100
committerGerrit Rockbox <gerrit@rockbox.org>2016-12-12 11:53:41 +0100
commit5c50efc9cec9b0b2f0af216c4e9bf82dc3046d04 (patch)
tree3f0229932bf4256838e8ceb5b4c0b6a448a81fa6
parent8e82839fe29c8f5d5180a0cd9e7561c0d74dfabe (diff)
downloadrockbox-5c50efc.tar.gz
rockbox-5c50efc.zip
hwstub/tools: always run make for the libraries
This ensures that the libs are always up-to-date hopefully. Change-Id: I790302fcabc91457091006de749b76735fdd510f
-rw-r--r--utils/hwstub/tools/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/utils/hwstub/tools/Makefile b/utils/hwstub/tools/Makefile
index 95eb4b72d6..15585bc097 100644
--- a/utils/hwstub/tools/Makefile
+++ b/utils/hwstub/tools/Makefile
@@ -17,10 +17,13 @@ LIBS=$(HWSTUB_LIB_DIR)/libhwstub.a $(REGTOOLS_LIB_DIR)/libsocdesc.a
all: $(EXEC)
-$(HWSTUB_LIB_DIR)/libhwstub.a:
+# force target to always rebuild libraries
+FORCE:
+
+$(HWSTUB_LIB_DIR)/libhwstub.a: FORCE
make -C $(HWSTUB_LIB_DIR)
-$(REGTOOLS_LIB_DIR)/libsocdesc.a:
+$(REGTOOLS_LIB_DIR)/libsocdesc.a: FORCE
make -C $(REGTOOLS_LIB_DIR)
%.o: %.c