diff options
author | jaseg <git@jaseg.net> | 2017-12-10 15:59:56 +0100 |
---|---|---|
committer | jaseg <git@jaseg.net> | 2017-12-10 15:59:56 +0100 |
commit | 582e6d77861661991cac818f035a1c67a4d92f74 (patch) | |
tree | 3827b476c1b276965b0e419e8830ea89a3ff7372 /fw/Makefile | |
parent | b315bc1e96342d3614b6bcd22937f1c658726110 (diff) | |
download | 7seg-582e6d77861661991cac818f035a1c67a4d92f74.tar.gz 7seg-582e6d77861661991cac818f035a1c67a4d92f74.tar.bz2 7seg-582e6d77861661991cac818f035a1c67a4d92f74.zip |
Add discovery and addressing mechanism
Diffstat (limited to 'fw/Makefile')
-rw-r--r-- | fw/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fw/Makefile b/fw/Makefile index 29bfb15..0b4e3ab 100644 --- a/fw/Makefile +++ b/fw/Makefile @@ -61,7 +61,7 @@ sources.c: sources.tar.xz.zip xxd -i $< | head -n -1 | sed 's/=/__attribute__((section(".source_tarball"))) =/' > $@ # FIXME re-add sources.o -main.elf: main.o startup_stm32f030x6.o system_stm32f0xx.o $(HAL_PATH)/Src/stm32f0xx_ll_utils.o base.o cmsis_exports.o transpose.o bus_addr.o +main.elf: main.o startup_stm32f030x6.o system_stm32f0xx.o $(HAL_PATH)/Src/stm32f0xx_ll_utils.o base.o cmsis_exports.o transpose.o bus_addr.o mac.o $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS) $(OBJCOPY) -O ihex $@ $(@:.elf=.hex) $(OBJCOPY) -O binary $@ $(@:.elf=.bin) |