11 lines
135 B
Makefile
11 lines
135 B
Makefile
|
all: install-deps choose-image
|
||
|
|
||
|
install-deps:
|
||
|
apt update
|
||
|
apt install qemu-utils -y
|
||
|
|
||
|
choose-image:
|
||
|
bash gen-write-image-command.sh
|
||
|
|
||
|
|