mirror of
https://github.com/grafana/grafana.git
synced 2024-11-22 08:56:43 -06:00
12 lines
355 B
Makefile
12 lines
355 B
Makefile
include ../../.bingo/Variables.mk
|
|
|
|
DASHBOARDS = $(shell find ../dev-dashboards -type f -name '*.json')
|
|
TEMPLATES = $(shell find ./ -type f -name '*.tmpl')
|
|
|
|
vendor: jsonnetfile.json jsonnetfile.lock.json
|
|
$(JB) install
|
|
|
|
dev-dashboards.libsonnet: $(DASHBOARDS) $(TEMPLATES) vendor dev-dashboards.go
|
|
go generate ./
|
|
|
|
main.libsonnet: dev-dashboards.libsonnet |