To build the kernel, run make
.
make
andmake all
: aliased tomake kernel.bin
make clean
: delete all object files, dependencies files, andkernel.bin
andkernel.gz
make dist
andmake tar
: first runsmake clean
, then creates an archive containing all filesmake todolist
: outputs all lines containing "TODO" in the project, excluding the Makefile
make: i686-elf-gcc: Command not found
Makefile:48: recipe for target 'kernel/kernel.c.o' failed
make: *** [kernel/kernel.c.o] Error 127
This means that you either haven't installed a cross-compiler, or it's not in your PATH
. For help, see cross-compiler.md
.