2021-11-02 03:15:52 +00:00
|
|
|
# export SHORTNAME=monterey
|
2021-11-28 02:05:37 +00:00
|
|
|
DISK_SIZE := 256G
|
2021-10-22 00:03:36 +00:00
|
|
|
|
|
|
|
all: BaseSystem.img mac_hdd_ng.img
|
|
|
|
|
|
|
|
BaseSystem.img: BaseSystem.dmg
|
|
|
|
qemu-img convert BaseSystem.dmg -O raw BaseSystem.img
|
|
|
|
|
|
|
|
BaseSystem.dmg:
|
2023-12-12 06:46:41 +00:00
|
|
|
./fetch-macOS-v2.py --shortname=$(SHORTNAME)
|
2021-10-22 00:03:36 +00:00
|
|
|
|
|
|
|
mac_hdd_ng.img:
|
|
|
|
qemu-img create -f qcow2 mac_hdd_ng.img ${DISK_SIZE}
|
|
|
|
|
2021-02-13 13:05:20 +00:00
|
|
|
clean:
|
2021-10-22 00:03:36 +00:00
|
|
|
rm -rf BaseSystem{.dmg,.img,.chunklist}
|