31 lines
516 B
Makefile
31 lines
516 B
Makefile
|
|
ARMGNU ?= arm-none-eabi
|
|
|
|
COPS = -Wall -O2 -nostdlib -nostartfiles -ffreestanding
|
|
|
|
all : kernel.img
|
|
|
|
clean :
|
|
rm -f *.o
|
|
rm -f *.bin
|
|
rm -f *.elf
|
|
rm -f *.list
|
|
rm -f *.img
|
|
|
|
novectors.o : novectors.s
|
|
$(ARMGNU)-as novectors.s -o novectors.o
|
|
|
|
uart01.o : uart01.c
|
|
$(ARMGNU)-gcc $(COPS) -c uart01.c -o uart01.o
|
|
|
|
kernel.img : memmap novectors.o uart01.o
|
|
$(ARMGNU)-ld novectors.o uart01.o -T memmap -o uart01.elf
|
|
$(ARMGNU)-objdump -D uart01.elf > uart01.list
|
|
$(ARMGNU)-objcopy uart01.elf -O binary kernel.img
|
|
|
|
|
|
|
|
|
|
|
|
|