diff --git a/Makefile b/Makefile index fe5383b05..487b345c7 100644 --- a/Makefile +++ b/Makefile @@ -168,8 +168,11 @@ identity_%: .PHONY: certificates_% certificates_%: GOOS=$(word 2, $(subst _, ,$@)) GOARCH=$(word 3, $(subst _, ,$@)) COMPONENT=certificates $(MAKE) binary +.PHONY: inspector_% +inspector_%: + GOOS=$(word 2, $(subst _, ,$@)) GOARCH=$(word 3, $(subst _, ,$@)) COMPONENT=inspector $(MAKE) binary -COMPONENTLIST := gateway satellite storagenode uplink identity certificates +COMPONENTLIST := gateway satellite storagenode uplink identity certificates inspector OSARCHLIST := darwin_amd64 linux_amd64 linux_arm windows_amd64 BINARIES := $(foreach C,$(COMPONENTLIST),$(foreach O,$(OSARCHLIST),$C_$O)) .PHONY: binaries