2021-11-01 22:15:52 -05:00
|
|
|
# export SHORTNAME=monterey
|
2021-11-27 20:05:37 -06:00
|
|
|
DISK_SIZE := 256G
|
2021-10-21 19:03:36 -05: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 00:46:41 -06:00
|
|
|
./fetch-macOS-v2.py --shortname=$(SHORTNAME)
|
2021-10-21 19:03:36 -05:00
|
|
|
|
|
|
|
mac_hdd_ng.img:
|
|
|
|
qemu-img create -f qcow2 mac_hdd_ng.img ${DISK_SIZE}
|
|
|
|
|
2021-02-13 07:05:20 -06:00
|
|
|
clean:
|
2021-10-21 19:03:36 -05:00
|
|
|
rm -rf BaseSystem{.dmg,.img,.chunklist}
|