12 lines
149 B
Makefile
12 lines
149 B
Makefile
|
ifndef CPUS
|
||
|
CPUS := 3
|
||
|
endif
|
||
|
|
||
|
qemu:
|
||
|
qemu-system-aarch64 \
|
||
|
-machine virt \
|
||
|
-kernel zig-out/bin/kernel \
|
||
|
-m 128M \
|
||
|
-smp $(CPUS) \
|
||
|
-nographic
|