aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f8d7460..cc83aca 100644
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,7 @@ export GOPATH ...
export GO111MODULE=on
.PHONY: all
-all: clean nfn-operator ovn4nfvk8s-cni
+all: clean nfn-operator ovn4nfvk8s-cni nfn-agent
nfn-operator:
@go build -o build/bin/nfn-operator ./cmd/nfn-operator
@@ -20,10 +20,14 @@ nfn-operator:
ovn4nfvk8s-cni:
@go build -o build/bin/ovn4nfvk8s-cni ./cmd/ovn4nfvk8s-cni
+nfn-agent:
+ @go build -o build/bin/nfn-agent ./cmd/nfn-agent
+
test:
@go test -v ./...
clean:
@rm -f build/bin/ovn4nfvk8s*
@rm -f build/bin/nfn-operator*
+ @rm -f build/bin/nfn-agent*