diff options
author | vetch <vetch97@gmail.com> | 2019-10-08 16:35:12 +0200 |
---|---|---|
committer | vetch <vetch97@gmail.com> | 2019-10-08 16:35:12 +0200 |
commit | 73d6f1693f0c4023df928363012bee3a6d442a4c (patch) | |
tree | b7c8d84c07ada4afb0bc499cceb17d0eaefaca14 /Makefile | |
parent | 41ad4c6268b0292464802d88ac6835d21e69cabb (diff) | |
download | rpi-MMU-example-73d6f1693f0c4023df928363012bee3a6d442a4c.tar.gz rpi-MMU-example-73d6f1693f0c4023df928363012bee3a6d442a4c.zip |
optimize imports
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ boot.o : boot.S arm-none-eabi-as -mcpu=cortex-a7 $^ -o $@ kernel.elf : boot.o kernel.o uart.o - arm-none-eabi-gcc -T linker.ld -o $@ -ffreestanding -O2 -nostdlib boot.o kernel.o uart.o -lgcc -I. + arm-none-eabi-gcc -T linker.ld -o $@ -ffreestanding -O2 -nostdlib $^ -lgcc -I. kernel7.img : kernel.elf arm-none-eabi-objcopy $^ -O binary $@ |