blob: d90ba2bc1d65573c365195f2f217f293a2d44086 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
VERSION := "invalid"
GITHUB_BASEURL := "https://github.com/cilium/cilium-cli/releases/download"
.PHONY: clean
all: amd64/cilium arm64/cilium
%/cilium: cilium-linux-%_$(VERSION).tar.gz
mkdir -p $(shell echo $@ | sed 's#/.*##')
tar -C $(shell echo $@ | sed 's#/.*##') -xzf "$<"
cilium-linux-%_$(VERSION).tar.gz:
wget -nc --progress=dot:mega "$(GITHUB_BASEURL)/v$(VERSION)/$(shell echo $@ | sed s/_$(VERSION)//)" -O "$@"
sha256sum -c --ignore-missing sha256sums.txt
clean:
rm -rf amd64
rm -rf arm64
rm -f cilium-linux-*.tar.gz
|