summaryrefslogtreecommitdiff
path: root/prom-server/Makefile
blob: 9de1ce738acfbefc40613471b41ef41276ebb87b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
VERSION := "invalid"
GITHUB_BASEURL := "https://github.com/prometheus/prometheus/releases/download"

.PHONY: clean

all: i386/prometheus amd64/prometheus arm64/prometheus

%/prometheus: prometheus-$(VERSION).linux-%.tar.gz
	mkdir -p $(shell echo $@ | sed 's#/.*##')
	tar -C $(shell echo $@ | sed 's#/.*##') -xzf "$<" --strip-components=1

prometheus-$(VERSION).linux-%.tar.gz:
	wget -nc --progress=dot:mega "$(GITHUB_BASEURL)/v$(VERSION)/$(shell echo $@ | sed s/i386/386/)" -O "$@"
	sha256sum -c --ignore-missing sha256sums.txt

clean:
	rm -rf i386
	rm -rf amd64
	rm -rf arm64
	rm -f prometheus-$(VERSION).linux-*.tar.gz