all: build
.PHONY: all

# Include the library makefile
include $(addprefix ./vendor/github.com/openshift/build-machinery-go/make/, \
	golang.mk \
	targets/openshift/deps-gomod.mk \
	targets/openshift/images.mk \
)

# Run core verification and all self contained tests.
#
# Example:
#   make check
check: | verify test-unit
.PHONY: check

#IMAGE_REGISTRY?=icr.io/ibm
IMAGE_REGISTRY?=quay.io/ocs-roks-team

## This will call a macro called "build-image" which will generate image specific targets based on the parameters:
## $0 - macro name
## $1 - target name
## $2 - image ref
## $3 - Dockerfile path
## $4 - context directory for image build
## It will generate target "image-$(1)" for building the image and binding it as a prerequisite to target "images".
##$(call build-image,ibm-vpc-block-csi-driver-operator,$(IMAGE_REGISTRY)/ibm-vpc-block-csi-driver-operator,./Dockerfile.rhel7,.)
$(call build-image,origin-ibm-vpc-block-csi-driver-operator,$(IMAGE_REGISTRY)/origin-ibm-vpc-block-csi-driver-operator,./Dockerfile,.)

clean:
	$(RM) origin-ibm-vpc-block-csi-driver-operator
#	$(RM) ibm-vpc-block-csi-driver-operator
.PHONY: clean

GO_TEST_PACKAGES :=./pkg/... ./cmd/...

# Run e2e tests. Requires openshift-tests in $PATH.
#
# Example:
#   make test-e2e
test-e2e:
	hack/e2e.sh

.PHONY: test-e2e
