Skip to content

Commit

Permalink
Merge pull request #581 from keisku/makefile-patch
Browse files Browse the repository at this point in the history
Makefile: Remove `build` dependency from `install`
  • Loading branch information
Mossaka authored May 6, 2024
2 parents 955c0da + e136067 commit ee73885
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit ee73885

Please sign in to comment.