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