aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-12-30 16:29:09 -0500
committerClyne Sullivan <tullivan99@gmail.com>2017-12-30 16:29:09 -0500
commitde7c4fb07d1ac0298e7fc62000c35193e221aaae (patch)
tree8e80c957d5b5066d92d943746ce8ef533d666b01 /Makefile
parent5f137a4fd613ccccb31f014481ff45be028cbcdf (diff)
pendsv, clock lib
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 44dd059..4a7a22c 100644
--- a/Makefile
+++ b/Makefile
@@ -5,6 +5,7 @@ all:
arm-none-eabi-as $(MCUFLAGS) startup_stm32l476xx.s -c -o out/startup_stm32l476xx.o
arm-none-eabi-gcc $(CFLAGS) system_stm32l4xx.c -c -o out/system_stm32l4xx.o
arm-none-eabi-gcc $(CFLAGS) stm32l4xx_it.c -c -o out/stm32l4xx_it.o
+ arm-none-eabi-gcc $(CFLAGS) clock.c -c -o out/clock.o
arm-none-eabi-gcc $(CFLAGS) main.c -c -o out/main.o
arm-none-eabi-gcc $(CFLAGS) -T link.ld out/*.o -o out/main.elf
arm-none-eabi-objcopy -O ihex out/main.elf main.hex