Skip to content

Commit a63c867

Browse files
committed
make: update make images targets
Signed-off-by: Djalal Harouni <[email protected]>
1 parent 5fadd54 commit a63c867

File tree

3 files changed

+32
-31
lines changed

3 files changed

+32
-31
lines changed

Makefile

+8-8
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44
# Copyright 2017-2020 Authors of Cilium
55

66
##@ Default target
7-
all: bpflock-img ## Default builds bpflock docker image.
7+
all: image/bpflock ## Default builds bpflock docker image.
88
@echo "Build finished."
99

1010
# We need this to load in-container related variables
1111
export BASE_IMAGE := $(BASE_IMAGE)
1212

1313
include Makefile.defs
1414

15-
ifndef BASE_IMAGE
15+
ifeq ($(strip, $(BASE_IMAGE)),)
1616
-include Makefile.docker
1717
endif
1818

19-
ifdef GO
19+
ifneq ($(strip $(GO)),)
2020
GOFILES_EVAL := $(subst _$(ROOT_DIR)/,,$(shell $(GO) list -find -e ./...))
2121
GOFILES ?= $(GOFILES_EVAL)
2222
TESTPACKAGES := $(shell $(GO_LIST) ./... | grep -v "github.com/linux-lock/bpflock/test/runtime")
@@ -91,14 +91,14 @@ test: ## Run unit tests
9191
check-code: gofmt govet test ## Run checks on code
9292

9393
.PHONY: integration
94-
integration: check-code bpflock-integration-img ## Build bpflock-integration tests docker image and run the tests.
94+
integration: check-code image/bpflock-integration ## Build bpflock-integration tests docker image and run the tests.
9595
$(GO) test -failfast -count=1 -v ./test/runtime/...
9696

9797
.PHONY: help
9898
help: Makefile
99-
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z0-9_-]+:.*?##/ { printf " \033[36m%-28s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
99+
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z0-9_\-/]+:.*?##/ { printf " \033[36m%-28s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
100100
@# There is also a list of target we have to manually put the information about.
101101
@# These are templated targets.
102-
$(call print_help_line, "bpflock-builder-img", "Build bpflock-builder docker image")
103-
$(call print_help_line, "bpflock-img", "Build bpflock docker image")
104-
$(call print_help_line, "bpflock-integration-img", "Build bpflock-integration tests docker image")
102+
$(call print_help_line, "image/bpflock-builder", "Build bpflock-builder docker image")
103+
$(call print_help_line, "image/bpflock", "Build bpflock docker image")
104+
$(call print_help_line, "image/bpflock-integration", "Build bpflock-integration tests docker image")

Makefile.defs

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ BPFTOOL ?= $(abspath ./tools/$(ARCH)/bpftool)
6363
# Go environment
6464
GO ?= $(shell command -v go 2> /dev/null)
6565

66-
ifdef GO
66+
ifneq ($(strip $(GO)),)
6767

6868
# go build/test/clean flags
6969
# these are declared here so they are treated explicitly

Makefile.docker

+23-22
Original file line numberDiff line numberDiff line change
@@ -112,51 +112,52 @@ $(1)-debug: UNSTRIPPED=-unstripped
112112
$(1)-debug: $(1)
113113
endef
114114

115-
# bpflock-builder-img image
116-
$(eval $(call DOCKER_IMAGE_TEMPLATE,bpflock-builder-img,$(ROOT_DIR)/images/builder/,bpflock-builder,$(DOCKER_IMAGE_TAG)))
115+
$(eval $(call DOCKER_IMAGE_TEMPLATE,image/bpflock-builder,$(ROOT_DIR)/images/builder/,bpflock-builder,$(DOCKER_IMAGE_TAG)))
117116

118-
.PHONY: bpflock-builder-tag
119-
bpflock-builder-tag: bpflock-builder ## Tag bpflock-builder images.
120-
$(CONTAINER_ENGINE) tag $(IMAGE_REPOSITORY)/bpflock-builder:$(DOCKER_IMAGE_TAG) $(IMAGE_REPOSITORY)/bpflock-builder:$(GIT_TAG)
117+
# Build bpflock image
118+
$(eval $(call DOCKER_IMAGE_TEMPLATE,image/bpflock,$(ROOT_DIR)/images/docker/,bpflock,$(GIT_TAG)))
121119

122-
# bpflock-img
123-
$(eval $(call DOCKER_IMAGE_TEMPLATE,bpflock-img,$(ROOT_DIR)/images/docker/,bpflock,$(GIT_TAG)))
120+
## Tag built images
121+
.PHONY: image/bpflock-builder-tag
122+
image/bpflock-builder-tag: ## Tag bpflock-builder images.
123+
$(CONTAINER_ENGINE) tag $(IMAGE_REPOSITORY)/bpflock-builder:$(DOCKER_IMAGE_TAG) $(IMAGE_REPOSITORY)/bpflock-builder:$(GIT_TAG)
124124

125-
.PHONY: bpflock-tag
126-
bpflock-tag: bpflock ## Tag docker bpflock image.
125+
.PHONY: image/bpflock-tag
126+
image/bpflock-tag: ## Tag docker bpflock image.
127127
$(CONTAINER_ENGINE) tag $(IMAGE_REPOSITORY)/bpflock:$(GIT_TAG) $(IMAGE_REPOSITORY)/bpflock:$(DOCKER_IMAGE_TAG)
128128

129-
.PHONY: bpflock-builder-tag
130-
bpflock-builder-push: bpflock-builder-tag ## Push bpflock builder images.
129+
## Push built images
130+
.PHONY: image/bpflock-builder-push
131+
image/bpflock-builder-push: image/bpflock-builder-tag ## Push bpflock builder images.
131132
$(CONTAINER_ENGINE) push $(IMAGE_REPOSITORY)/bpflock-builder:$(GIT_TAG)
132133
@echo 'Build: $(IMAGE_REPOSITORY)/bpflock-builder:$(GIT_TAG) image pushed'
133134
$(CONTAINER_ENGINE) push $(IMAGE_REPOSITORY)/bpflock-builder:$(DOCKER_IMAGE_TAG)
134135
@echo 'Build: $(IMAGE_REPOSITORY)/bpflock-builder:$(DOCKER_IMAGE_TAG) image pushed'
135136

136-
.PHONY: bpflock-builder-push
137-
bpflock-push: bpflock-tag ## Push bpflock images.
137+
.PHONY: image/bpflock-push
138+
image/bpflock-push: image/bpflock-tag ## Push bpflock images.
138139
$(CONTAINER_ENGINE) push $(IMAGE_REPOSITORY)/bpflock:$(GIT_TAG)
139140
@echo 'Build: $(IMAGE_REPOSITORY)/bpflock:$(GIT_TAG) image pushed'
140141
$(CONTAINER_ENGINE) push $(IMAGE_REPOSITORY)/bpflock:$(DOCKER_IMAGE_TAG)
141142
@echo 'Build: $(IMAGE_REPOSITORY)/bpflock:$(GIT_TAG) image pushed'
142143

143-
# bpflock-integration-img
144-
$(eval $(call DOCKER_IMAGE_TEMPLATE,bpflock-integration-img,$(ROOT_DIR)/images/docker/,bpflock-integration,$(DOCKER_IMAGE_TAG)))
144+
# image/bpflock-integration
145+
$(eval $(call DOCKER_IMAGE_TEMPLATE,image/bpflock-integration,$(ROOT_DIR)/images/docker/,bpflock-integration,$(DOCKER_IMAGE_TAG)))
145146

146147
#
147148
# docker-*-all targets are mainly used from the CI
148149
#
149150
.PHONY: images
150-
images: bpflock-builder-img bpflock-img ## Build all bpflock related docker images.
151+
images: image/bpflock-builder image/bpflock ## Build all bpflock related docker images.
151152

152-
.PHONY: tag
153-
tag: bpflock-builder-tag bpflock-tag ## Tag and push all bpflock related docker images.
153+
.PHONY: images/tag
154+
images/tag: image/bpflock-builder-tag image/bpflock-tag ## Tag all bpflock related docker images.
154155

155-
.PHONY: push
156-
push: bpflock-builder-push bpflock-push ## Push all bpflock related docker images.
156+
.PHONY: images/push
157+
images/push: image/bpflock-builder-push image/bpflock-push ## Push all bpflock related docker images.
157158

158-
.PHONY: clean-images
159-
clean-images: ## Remove bpflock docker images including builder.
159+
.PHONY: images/clean
160+
images/clean: ## Remove bpflock docker images including builder.
160161
@$(DOCKER) container rm -f $(shell $(DOCKER) container ls -aq | grep "bpflock" -) 2>/dev/null || true
161162
@$(DOCKER) rmi -f $(shell $(DOCKER) images --format '{{.Repository}}:{{.Tag}}' | grep "bpflock" -) 2>/dev/null || true
162163

0 commit comments

Comments
 (0)