aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2018-01-01 17:40:28 -0500
committerClyne Sullivan <tullivan99@gmail.com>2018-01-01 17:40:28 -0500
commit058c283919424ef8b4425cdf74739535dd1d8072 (patch)
tree7aa6c40d7c6aa1dad5b0fba24f22c22759fcab59 /Makefile
parentde7c4fb07d1ac0298e7fc62000c35193e221aaae (diff)
heap; multitasking
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 4a7a22c..48175ff 100644
--- a/Makefile
+++ b/Makefile
@@ -6,6 +6,8 @@ all:
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) heap.c -c -o out/heap.o
+ arm-none-eabi-gcc $(CFLAGS) task.c -c -o out/task.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