influxdb/task/backend/Makefile

11 lines
123 B
Makefile

targets := meta.pb.go
GO_GENERATE := go generate
all: $(targets)
$(targets): meta.proto
$(GO_GENERATE) -x
.PHONY: all