summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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