12 lines
196 B
Makefile
12 lines
196 B
Makefile
.PHONY: all
|
|
all:
|
|
./rscons build
|
|
|
|
.PHONY: run-efi
|
|
run-efi: all
|
|
qemu-system-x86_64 -bios OVMF.fd -hda build/hos-efi.img
|
|
|
|
.PHONY: run-bios
|
|
run-bios: all
|
|
qemu-system-x86_64 -hda build/hos-bios.img
|