1 # SPDX-license-identifier: Apache-2.0
2 ##############################################################################
3 # Copyright (c) 2018 Intel Corporation
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9 GOPATH := $(shell realpath "$(PWD)/../../")
15 all: clean nfn-operator ovn4nfvk8s-cni nfn-agent
18 @go build -o build/bin/nfn-operator ./cmd/nfn-operator
21 @go build -o build/bin/ovn4nfvk8s-cni ./cmd/ovn4nfvk8s-cni
24 @go build -o build/bin/nfn-agent ./cmd/nfn-agent
30 @rm -f build/bin/ovn4nfvk8s*
31 @rm -f build/bin/nfn-operator*
32 @rm -f build/bin/nfn-agent*