mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-23 22:29:59 -05:00
16 lines
296 B
Makefile
16 lines
296 B
Makefile
SHELL := bash
|
|
NAME := protogen
|
|
|
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
|
include ../.bingo/Variables.mk
|
|
endif
|
|
include ../.make/default.mk
|
|
|
|
.PHONY: go-generate
|
|
go-generate: $(MOCKERY)
|
|
$(MOCKERY)
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
$(NOOP)
|