mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-31 09:20:15 -06:00
Added protogen to the OC_MODULES list since it uses mockery so has generated files. Removed `include` for file which no-longer exists.
12 lines
265 B
Makefile
12 lines
265 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)
|