mirror of
https://github.com/tailix/kernel.git
synced 2024-10-30 12:03:52 -04:00
10 lines
201 B
Makefile
10 lines
201 B
Makefile
run: all
|
|
qemu-system-i386 -cdrom image.iso
|
|
|
|
all:
|
|
grub-file --is-x86-multiboot2 "$(K)"
|
|
cp "$(K)" rootfs/boot/kernelmq
|
|
grub-mkrescue rootfs -o image.iso
|
|
|
|
clean:
|
|
rm -f image.iso rootfs/boot/kernelmq
|