27 lines
872 B
Makefile
27 lines
872 B
Makefile
FROSTFS_VERSION?=0.42.9
|
|
FROSTFS_CONTRACTS_VERSION=0.19.4
|
|
NEOGO_VERSION?=0.104.0
|
|
|
|
ADM?=bin/frostfs-adm-v$(FROSTFS_VERSION)
|
|
ADM_RELEASE_URL=https://git.frostfs.info/TrueCloudLab/frostfs-node/releases/download/v$(FROSTFS_VERSION)/frostfs-adm
|
|
|
|
CLI?=bin/frostfs-cli-v$(FROSTFS_VERSION)
|
|
CLI_RELEASE_URL=https://git.frostfs.info/TrueCloudLab/frostfs-node/releases/download/v$(FROSTFS_VERSION)/frostfs-cli
|
|
|
|
NEOGO?=bin/neo-go-v$(NEOGO_VERSION)
|
|
NEOGO_RELEASE_URL=https://github.com/nspcc-dev/neo-go/releases/download/v$(NEOGO_VERSION)/neo-go-linux-amd64
|
|
|
|
bin/frostfs-adm-v$(FROSTFS_VERSION):
|
|
mkdir -p $(dir $@)
|
|
wget -q "$(ADM_RELEASE_URL)" -O "$@"
|
|
chmod +x "$@"
|
|
|
|
bin/frostfs-cli-v$(FROSTFS_VERSION):
|
|
mkdir -p $(dir $@)
|
|
wget -q "$(CLI_RELEASE_URL)" -O "$@"
|
|
chmod +x "$@"
|
|
|
|
bin/neo-go-v$(NEOGO_VERSION):
|
|
mkdir -p $(dir $@)
|
|
wget -q "$(NEOGO_RELEASE_URL)" -O "$@"
|
|
chmod +x "$@"
|