Files
x86-bare-metal-examples/grub/chainloader/Makefile
2015-09-18 09:34:53 +02:00

14 lines
219 B
Makefile

.POSIX:
.PHONY: clean run
main.img:
make -C '../mbrs' && cp '../bios_hello_world.img.sym' 'iso/boot/main.img'
grub-mkrescue -o '$@' iso
clean:
rm -f iso/boot/*.img *.img
run: main.img
qemu-system-i386 -hda '$<'