mirror of
https://github.com/open-cluster-management-io/ocm.git
synced 2026-05-10 03:07:59 +00:00
17 lines
285 B
Makefile
17 lines
285 B
Makefile
|
|
all: build
|
|
.PHONY: all
|
|
|
|
# Include the library makefile
|
|
include $(addprefix ./vendor/github.com/openshift/build-machinery-go/make/, \
|
|
golang.mk \
|
|
targets/openshift/deps.mk \
|
|
targets/openshift/images.mk \
|
|
)
|
|
|
|
clean:
|
|
$(RM) ./work
|
|
.PHONY: clean
|
|
|
|
GO_TEST_PACKAGES :=./pkg/... ./cmd/...
|