blob: f8d74603224036cd4168b00ed633f3396bda9ca7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# SPDX-license-identifier: Apache-2.0
##############################################################################
# Copyright (c) 2018 Intel Corporation
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
GOPATH := $(shell realpath "$(PWD)/../../")
export GOPATH ...
export GO111MODULE=on
.PHONY: all
all: clean nfn-operator ovn4nfvk8s-cni
nfn-operator:
@go build -o build/bin/nfn-operator ./cmd/nfn-operator
ovn4nfvk8s-cni:
@go build -o build/bin/ovn4nfvk8s-cni ./cmd/ovn4nfvk8s-cni
test:
@go test -v ./...
clean:
@rm -f build/bin/ovn4nfvk8s*
@rm -f build/bin/nfn-operator*
|