summaryrefslogtreecommitdiff
path: root/partitions/Makefile
blob: cf8ac28543e0a9412f0e1ca79e25f06e8594b1e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

.PHONY: all clean

all: whole.img

whole.img:
	partvi

.PHONY: usb emu
usb: whole.img
	usb=$$(usb) && dd status=progress if="$<" of="$$usb"

emu: whole.img
	qemu-system-x86_64 -m 800 -enable-kvm -boot c "$<"

clean:
	rm -rf _build whole.img