12 lines
187 B
Makefile
12 lines
187 B
Makefile
|
|
kernel.bin:entry.o main.o
|
|
ld -m elf_i386 --entry=_start -Ttext=0x100000 -o $@ $^
|
|
|
|
entry.o:entry.asm
|
|
nasm -f elf $^
|
|
main.o:main.c
|
|
gcc -m32 -c $^ -o $@
|
|
|
|
clean:
|
|
rm ./*.o
|
|
rm kernel.bin
|