18 lines
361 B
Makefile
18 lines
361 B
Makefile
# main.elf is the main output: the multiboot file.
|
|
main.elf: entry.o main.o
|
|
ld -m elf_i386 -nostdlib -T linker.ld -o '$@' $^
|
|
|
|
entry.o: entry.asm
|
|
nasm -f elf32 '$<' -o '$@'
|
|
|
|
main.o: main.c
|
|
gcc -c -m32 -std=c99 -ffreestanding -fno-builtin -Os -o '$@' -Wall -Wextra '$<'
|
|
|
|
clean:
|
|
rm -f *.elf *.o
|
|
|
|
run: main.elf
|
|
qemu-system-i386 -kernel '$<'
|
|
|
|
.PHONY: clean run
|