experiment-x/Makefile
Dhiru Kholia 1cc6430f96 OSX-KVM - October 2021 Batch Update
Changes:

- Add Makefile to improve usability (thiagokokada)

- Typo fix (cclauss)

- Update to OpenCore-0.7.4 (via Nick)
2021-10-25 11:40:51 +05:30

15 lines
299 B
Makefile

DISK_SIZE := 128G
all: BaseSystem.img mac_hdd_ng.img
BaseSystem.img: BaseSystem.dmg
qemu-img convert BaseSystem.dmg -O raw BaseSystem.img
BaseSystem.dmg:
./fetch-macOS-v2.py
mac_hdd_ng.img:
qemu-img create -f qcow2 mac_hdd_ng.img ${DISK_SIZE}
clean:
rm -rf BaseSystem{.dmg,.img,.chunklist}