mirror of
https://github.com/ClusterCockpit/cc-metric-collector.git
synced 2024-11-10 04:27:25 +01:00
14 lines
228 B
Makefile
14 lines
228 B
Makefile
|
APP = cc-metric-collector
|
||
|
|
||
|
all: $(APP)
|
||
|
|
||
|
$(APP): metric-collector.go
|
||
|
make -C collectors
|
||
|
go build -o $(APP) metric-collector.go
|
||
|
|
||
|
fmt:
|
||
|
go fmt collectors/*.go
|
||
|
go fmt sinks/*.go
|
||
|
go fmt receivers/*.go
|
||
|
go fmt metric-collector.go
|