From d3a0364f21f02f5fc8190cf447bab99a6dbc84f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Niewrza=C5=82?= Date: Thu, 28 Oct 2021 09:47:36 +0200 Subject: [PATCH] Makefile: add uplinkng to build binaries We want uplinkng binaries easily accessible. Change-Id: I83e1d90f9413ebd97e1a51d0435548bc0cac8ad8 --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f9c282d77..b6f97f086 100644 --- a/Makefile +++ b/Makefile @@ -304,9 +304,12 @@ versioncontrol_%: .PHONY: multinode_% multinode_%: multinode-console $(MAKE) binary-check COMPONENT=multinode GOARCH=$(word 3, $(subst _, ,$@)) GOOS=$(word 2, $(subst _, ,$@)) +.PHONY: uplinkng_% +uplinkng_%: + $(MAKE) binary-check COMPONENT=uplinkng GOARCH=$(word 3, $(subst _, ,$@)) GOOS=$(word 2, $(subst _, ,$@)) -COMPONENTLIST := certificates identity inspector satellite storagenode storagenode-updater uplink versioncontrol multinode +COMPONENTLIST := certificates identity inspector satellite storagenode storagenode-updater uplink versioncontrol multinode uplinkng OSARCHLIST := linux_amd64 linux_arm linux_arm64 windows_amd64 freebsd_amd64 BINARIES := $(foreach C,$(COMPONENTLIST),$(foreach O,$(OSARCHLIST),$C_$O)) .PHONY: binaries