diff options
author | Fredrik Thulin <fredrik@thulin.net> | 2016-05-16 15:45:02 +0200 |
---|---|---|
committer | Fredrik Thulin <fredrik@thulin.net> | 2016-05-16 15:45:02 +0200 |
commit | 4c1eff0373b7a4a0072fc7515352139cd9d6d02f (patch) | |
tree | 597e448fbce65a3301413f376e9ac08d4023ef10 /Makefile | |
parent | 9b73356f2831800d2328827998e1e5b2a1994b68 (diff) |
Add code to talk with the external RTC chip.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -52,6 +52,7 @@ export BOARD_OBJS = \ $(TOPLEVEL)/stm-init.o \ $(TOPLEVEL)/stm-fmc.o \ $(TOPLEVEL)/stm-uart.o \ + $(TOPLEVEL)/stm-rtc.o \ $(TOPLEVEL)/syscalls.o \ $(BOARD_DIR)/TOOLCHAIN_GCC_ARM/startup_stm32f429xx.o \ $(BOARD_DIR)/system_stm32f4xx.o \ @@ -127,7 +128,7 @@ hsm: $(BOARD_OBJS) $(LIBS) $(LIBHAL_DIR)/libhal.a # don't automatically delete objects, to avoid a lot of unnecessary rebuilding .SECONDARY: $(BOARD_OBJS) -.PHONY: board-test rtos-test libhal-test +.PHONY: board-test rtos-test libhal-test cli-test clean: rm -f $(BOARD_OBJS) |