mirror of
https://github.com/isometimes/rpi4-osdev
synced 2024-11-08 19:30:39 +00:00
23 lines
723 B
Makefile
23 lines
723 B
Makefile
|
CFILES = $(wildcard *.c)
|
||
|
OFILES = $(CFILES:.c=.o)
|
||
|
LLVMPATH = /opt/homebrew/opt/llvm/bin
|
||
|
CLANGFLAGS = -Wall -O2 -ffreestanding -nostdinc -nostdlib -mcpu=cortex-a72+nosimd
|
||
|
|
||
|
all: clean kernel8.img
|
||
|
|
||
|
boot.o: boot.S
|
||
|
$(LLVMPATH)/clang --target=aarch64-elf $(CLANGFLAGS) -c boot.S -o boot.o
|
||
|
|
||
|
audio.o : audio.bin
|
||
|
$(LLVMPATH)/llvm-objcopy -I binary -O elf64-littleaarch64 -B aarch64 $< $@
|
||
|
|
||
|
%.o: %.c
|
||
|
$(LLVMPATH)/clang --target=aarch64-elf $(CLANGFLAGS) -c $< -o $@
|
||
|
|
||
|
kernel8.img: boot.o $(OFILES) audio.o
|
||
|
$(LLVMPATH)/ld.lld -m aarch64elf -nostdlib boot.o $(OFILES) audio.o -T link.ld -o kernel8.elf
|
||
|
$(LLVMPATH)/llvm-objcopy -O binary kernel8.elf kernel8.img
|
||
|
|
||
|
clean:
|
||
|
/bin/rm kernel8.elf *.o *.img > /dev/null 2> /dev/null || true
|