diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2018-01-01 17:40:28 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2018-01-01 17:40:28 -0500 |
commit | 058c283919424ef8b4425cdf74739535dd1d8072 (patch) | |
tree | 7aa6c40d7c6aa1dad5b0fba24f22c22759fcab59 /Makefile | |
parent | de7c4fb07d1ac0298e7fc62000c35193e221aaae (diff) |
heap; multitasking
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 |