aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2016-06-14 22:38:06 -0400
committerRob Austein <sra@hactrn.net>2016-06-14 22:38:06 -0400
commit764c6f6bd0d055c871e69f0af47d1fa0c7ae0924 (patch)
tree235dd1267ccf06b424d8833cc9bc645aceb03dde
parent057b71c1010e40be56031a6324b9fe2cdaebd6b4 (diff)
hsm project was failing with obscure make error because makefile did not specify dependency on libcli.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index db23eae..1bdb5fa 100644
--- a/Makefile
+++ b/Makefile
@@ -136,7 +136,7 @@ $(LIBCLI_DIR)/libcli.a:
libhal-test: $(BOARD_OBJS) $(LIBS) $(LIBHAL_DIR)/libhal.a
$(MAKE) -C projects/libhal-test
-hsm: $(BOARD_OBJS) $(LIBS) $(LIBHAL_DIR)/libhal.a $(RTOS_DIR)/librtos.a
+hsm: $(BOARD_OBJS) $(LIBS) $(LIBHAL_DIR)/libhal.a $(RTOS_DIR)/librtos.a $(LIBCLI_DIR)/libcli.a
$(MAKE) -C projects/hsm
bootloader: $(BOARD_OBJS) $(LIBS)