# OVMF building system is not ready yet to run in parallel.
# Force it to be serial in order to exploit parallelism for neighbors.

.NOTPARALLEL:
MAKEFLAGS  += -j1

.PHONY: all
all: ovmf.bin

.PHONY: ovmf.bin
ovmf.bin:
	OvmfPkg/build.sh -a X64
	cp Build/OvmfX64/DEBUG_GCC44/FV/OVMF.fd ovmf.bin

.PHONY: clean
clean:
	rm -rf ovmf.bin Build/*
