aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: cc83aca9fb2cc14c6a0088d52057e09f9e497fc7 (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
30
31
32
33
# 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-agent

nfn-operator:
	@go build -o build/bin/nfn-operator ./cmd/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*