forked from oVirt/csi-driver-operator
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Makefile
45 lines (34 loc) · 1.24 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
SHELL :=/bin/bash
all: build
.PHONY: all
TARGET_NAME=csi-driver-operator
IMAGE_REF=quay.io/openshift/$(TARGET_NAME):latest
GO_TEST_PACKAGES :=./pkg/... ./cmd/...
IMAGE_REGISTRY?=registry.svc.ci.openshift.org
# You can customize go tools depending on the directory layout.
# example:
#GO_BUILD_PACKAGES :=./pkg/...
# You can list all the golang related variables by:
# $ make -n --print-data-base | grep ^GO
# 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 \
)
# All the available targets are listed in <this-file>.help
# or you can list it live by using `make help`
# You can list all codegen related variables by:
# $ make -n --print-data-base | grep ^CODEGEN
# This will call a macro called "build-image" which will generate image specific targets based on the parameters:
# $1 - target name
# $2 - image ref
# $3 - Dockerfile path
# $4 - context
# It will generate target "image-$(1)" for builing the image an binding it as a prerequisite to target "images".
$(call build-image,$(TARGET_NAME),$(IMAGE_REF),./Dockerfile,.)
# make target aliases
fmt: verify-gofmt
vet: verify-govet
.PHONY: vendor
vendor: verify-deps