1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2024-10-30 12:03:52 -04:00
kernel/iso/Makefile

12 lines
258 B
Makefile
Raw Normal View History

2017-11-01 05:20:44 -04:00
run: all
qemu-system-i386 -cdrom image.iso
all:
2017-11-04 03:43:03 -04:00
grub-file --is-x86-multiboot2 "$(KERNEL)"
cp "$(KERNEL)" rootfs/boot/kernelmq
2017-11-05 13:24:19 -05:00
cp $(MODULES) rootfs/boot/
2017-11-01 05:20:44 -04:00
grub-mkrescue rootfs -o image.iso
clean:
2017-11-05 13:24:19 -05:00
rm -f image.iso rootfs/boot/kernelmq rootfs/boot/*.bin