From e13606715ca123a28092a74232fdf8f83d530471 Mon Sep 17 00:00:00 2001 From: keisku Date: Sun, 5 May 2024 23:44:08 +0000 Subject: [PATCH] remove `build` dependency from `install` --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index aac0dcfe9..1e43a527c 100644 --- a/Makefile +++ b/Makefile @@ -134,7 +134,7 @@ test-oci-tar-builder: .PHONY: install install-% install: $(RUNTIMES:%=install-%); -install-%: build-% +install-%: mkdir -p $(PREFIX)/bin $(INSTALL) $(TARGET_DIR)/$(TARGET)/$(OPT_PROFILE)/containerd-shim-$*-v1 $(PREFIX)/bin/ $(LN) ./containerd-shim-$*-v1 $(PREFIX)/bin/containerd-shim-$*d-v1 @@ -151,10 +151,10 @@ dist/clean: rm -rf dist .PHONY: install/all -install/all: test-image/clean build install test-image load +install/all: test-image/clean install test-image load .PHONY: install/oci/all -install/oci/all: test-image/oci/clean build install test-image/oci load/oci +install/oci/all: test-image/oci/clean install test-image/oci load/oci .PHONY: test-image test-image: dist/img.tar