mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2024-12-14 11:57:51 +00:00
makefile: fix build: target
Create binaries under bin/ rather than a binary named bin.
This commit is contained in:
parent
21d558cfe8
commit
4d2feca004
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -93,7 +93,7 @@ all: image
|
|||
BUILD_BINARIES := nfd-master nfd-worker nfd-topology-updater nfd-gc kubectl-nfd
|
||||
|
||||
build-%:
|
||||
$(GO_CMD) build -v -o bin $(BUILD_FLAGS) ./cmd/$*
|
||||
$(GO_CMD) build -v -o bin/ $(BUILD_FLAGS) ./cmd/$*
|
||||
|
||||
build: $(foreach bin, $(BUILD_BINARIES), build-$(bin))
|
||||
|
||||
|
|
Loading…
Reference in a new issue