summaryrefslogtreecommitdiff
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-5c50efc9cec9b0b2f0af216c4e9bf82dc3046d04.tar.gz
rockbox-5c50efc9cec9b0b2f0af216c4e9bf82dc3046d04.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
17 17
18all: $(EXEC) 18all: $(EXEC)
19 19
20$(HWSTUB_LIB_DIR)/libhwstub.a: 20# force target to always rebuild libraries
21FORCE:
22
23$(HWSTUB_LIB_DIR)/libhwstub.a: FORCE
21 make -C $(HWSTUB_LIB_DIR) 24 make -C $(HWSTUB_LIB_DIR)
22 25
23$(REGTOOLS_LIB_DIR)/libsocdesc.a: 26$(REGTOOLS_LIB_DIR)/libsocdesc.a: FORCE
24 make -C $(REGTOOLS_LIB_DIR) 27 make -C $(REGTOOLS_LIB_DIR)
25 28
26%.o: %.c 29%.o: %.c