mirror of
https://github.com/prometheus-community/smartctl_exporter.git
synced 2024-11-16 01:33:07 +01:00
34 lines
862 B
Makefile
34 lines
862 B
Makefile
GOPATH=$(shell pwd)/vendor:$(shell pwd)
|
|
GOBIN=$(shell pwd)/bin
|
|
GOFILES=$(wildcard *.go)
|
|
GONAME=$(shell basename "$(PWD)")
|
|
PID=/tmp/go-$(GONAME).pid
|
|
|
|
build: get
|
|
@echo "Building $(GOFILES) to ./bin"
|
|
@GOPATH=$(GOPATH) GOBIN=$(GOBIN) go build -o bin/$(GONAME) $(GOFILES)
|
|
|
|
get:
|
|
@GOPATH=$(GOPATH) GOBIN=$(GOBIN) go get .
|
|
|
|
install:
|
|
@GOPATH=$(GOPATH) GOBIN=$(GOBIN) go install $(GOFILES)
|
|
|
|
run: build
|
|
@GOPATH=$(GOPATH) GOBIN=$(GOBIN) go run $(GOFILES) --config=$(shell pwd)/smartctl_exporter.yaml --debug --verbose
|
|
|
|
run-sudo: build
|
|
sudo bin/$(GONAME) --config=$(shell pwd)/smartctl_exporter.yaml --debug --verbose
|
|
|
|
clear:
|
|
@clear
|
|
|
|
clean:
|
|
@echo "Cleaning"
|
|
@GOPATH=$(GOPATH) GOBIN=$(GOBIN) go clean
|
|
|
|
example:
|
|
@echo "# Example output" > EXAMPLE.md
|
|
@echo "'''" >> EXAMPLE.md
|
|
@curl -s localhost:9633/metrics | grep smartctl >> EXAMPLE.md
|
|
@echo "'''" >> EXAMPLE.md
|