mirror of
https://gitlab.com/bztsrc/posix-uefi.git
synced 2024-12-29 05:55:31 +01:00
12 lines
237 B
Makefile
12 lines
237 B
Makefile
|
OVMF = /usr/share/qemu/bios-TianoCoreEFI.bin
|
||
|
|
||
|
all: $(wildcard examples/*)
|
||
|
|
||
|
.PHONY: Makefile
|
||
|
|
||
|
%: Makefile
|
||
|
@test -f $@/Makefile && make -C $@ all 2>/dev/null
|
||
|
|
||
|
test:
|
||
|
qemu-system-x86_64 -bios $(OVMF) -m 64 -enable-kvm -hda fat:rw:examples
|