From 1ed9afc26c2e08d1f3d014a6e62a323e1bca4bd9 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Fri, 21 Jul 2023 17:01:20 +0900 Subject: [PATCH] Makefile: add `make minimal` Signed-off-by: Akihiro Suda --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile b/Makefile index 5b20d056a33..a29c2433eb3 100644 --- a/Makefile +++ b/Makefile @@ -36,6 +36,14 @@ all: binaries manpages exe: _output/bin/limactl$(exe) +.PHONY: minimal +minimal: clean \ + _output/bin/limactl$(exe) \ + codesign \ + _output/share/lima/lima-guestagent.Linux-$(shell uname -m | sed -e s/arm64/aarch64/) + mkdir -p _output/share/lima/examples + cp -aL examples/default.yaml _output/share/lima/examples/ + .PHONY: binaries binaries: clean \ _output/bin/lima \