mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-31 01:10:20 -06:00
17 lines
445 B
Makefile
17 lines
445 B
Makefile
include ../.make/recursion.mk
|
|
|
|
############ tooling ############
|
|
ifneq (, $(shell command -v go 2> /dev/null)) # suppress `command not found warnings` for non go targets in CI
|
|
include ../.bingo/Variables.mk
|
|
endif
|
|
|
|
############ generate ############
|
|
include ../.make/generate.mk
|
|
|
|
.PHONY: ci-node-generate
|
|
ci-node-generate:
|
|
|
|
.PHONY: ci-go-generate
|
|
ci-go-generate: $(MOCKERY) # CI runs ci-node-generate automatically before this target
|
|
$(MOCKERY)
|