blob: e43ec5162c09bfb910f17e8e316c6a56a12c9685 [file] [log] [blame]
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -07001#
2# Copyright 2016 the original author or authors.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
Nathan Knuthedc88da2016-09-17 00:28:05 -070017ifeq ($(VOLTHA_BASE)_set,_set)
18$(error To get started, please source the env.sh file)
19endif
20
Nathan Knuth84dfd2e2016-09-16 15:06:34 -070021include setup.mk
22
Zsolt Haraszti41612482016-09-21 12:26:20 -070023VENVDIR := venv-$(shell uname -s | tr '[:upper:]' '[:lower:]')
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070024
Nathan Knuth84dfd2e2016-09-16 15:06:34 -070025.PHONY: $(DIRS) $(DIRS_CLEAN) $(DIRS_FLAKE8) flake8
26
Nathan Knuth5157de02016-09-16 15:20:37 -070027default: build
28
Nathan Knuth84dfd2e2016-09-16 15:06:34 -070029## New directories can be added here
30DIRS:=\
Nathan Knuthdaa1f6e2016-09-17 00:17:31 -070031voltha \
Nathan Knuthedc88da2016-09-17 00:28:05 -070032voltha/northbound/openflow \
33voltha/northbound/openflow/agent \
34voltha/northbound/openflow/oftest
Nathan Knuth84dfd2e2016-09-16 15:06:34 -070035
36## If one directory depends on another directory that
37## dependency can be expressed here
38##
39## For example, if the Tibit directory depended on the eoam
40## directory being built first, then that can be expressed here.
41## driver/tibit: eoam
42
43# Parallel Build
44$(DIRS):
45 @echo " MK $@"
46 $(Q)$(MAKE) -C $@
47
48# Parallel Clean
49DIRS_CLEAN = $(addsuffix .clean,$(DIRS))
50$(DIRS_CLEAN):
51 @echo " CLEAN $(basename $@)"
52 $(Q)$(MAKE) -C $(basename $@) clean
53
54# Parallel Flake8
55DIRS_FLAKE8 = $(addsuffix .flake8,$(DIRS))
56$(DIRS_FLAKE8):
57 @echo " FLAKE8 $(basename $@)"
Nathan Knuth950dff22016-09-17 16:12:34 -070058 -$(Q)$(MAKE) -C $(basename $@) flake8
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070059
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070060help:
61 @echo "Usage: make [<target>]"
62 @echo "where available targets are:"
63 @echo
Zsolt Haraszti86be6f12016-09-27 09:56:49 -070064 @echo "build : Build the Voltha docker images (default target)"
Zsolt Harasztib71c2a02016-09-12 13:12:07 -070065 @echo "clean : Remove files created by the build and tests"
Nathan Knutha6b09e32016-09-21 16:26:09 -070066 @echo "distclean : Remove venv directory"
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070067 @echo "fetch : Pre-fetch artifacts for subsequent local builds"
Nathan Knuthc0a80c82016-09-16 15:17:45 -070068 @echo "flake8 : Run specifically flake8 tests"
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070069 @echo "help : Print this help"
Zsolt Haraszti5cd64702016-09-27 13:48:35 -070070 @echo "protos : Compile all grpc/protobuf files"
Zsolt Haraszti51af3392016-09-10 22:18:45 -070071 @echo "rebuild-venv : Rebuild local Python virtualenv from scratch"
72 @echo "venv : Build local Python virtualenv if did not exist yet"
73 @echo "utest : Run all unit tests"
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070074 @echo
75
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -070076build: protos docker-base
Zsolt Haraszti32dda552016-09-27 09:17:29 -070077 docker build -t cord/voltha -f Dockerfile.voltha .
Zsolt Haraszti86be6f12016-09-27 09:56:49 -070078 docker build -t cord/chameleon -f Dockerfile.chameleon .
Zsolt Haraszti32dda552016-09-27 09:17:29 -070079
80docker-base: .docker-base-built
81
82.docker-base-built: Dockerfile.base Makefile requirements.txt
83 docker build -t cord/voltha-base -f Dockerfile.base .
84 touch .docker-base-built
Zsolt Haraszti51af3392016-09-10 22:18:45 -070085
Zsolt Haraszti5cd64702016-09-27 13:48:35 -070086protos:
87 make -C voltha/protos
88 make -C chameleon/protos
Zsolt Haraszti023ea7c2016-10-16 19:30:34 -070089 make -C ofagent/protos
Zsolt Harasztia54f2ac2016-09-21 15:54:15 -070090
91install-protoc:
Zsolt Haraszti5cd64702016-09-27 13:48:35 -070092 make -C voltha/protos install-protoc
Zsolt Harasztia54f2ac2016-09-21 15:54:15 -070093
Zsolt Harasztib71c2a02016-09-12 13:12:07 -070094clean:
95 find voltha -name '*.pyc' | xargs rm -f
96
Nathan Knutha6b09e32016-09-21 16:26:09 -070097distclean: clean
98 rm -rf ${VENVDIR}
99
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700100fetch:
Zsolt Harasztif2da1d02016-09-13 23:21:35 -0700101 docker pull consul:latest
102 docker pull fluent/fluentd:latest
103 docker pull gliderlabs/registrator:latest
Zsolt Haraszti0650d1a2016-09-26 17:29:25 -0700104 docker pull ubuntu:xenial
Khen Nursimulu37a9bf82016-10-16 20:11:31 -0400105 docker pull wurstmeister/kafka:latest
106 docker pull wurstmeister/zookeeper:latest
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700107
108purge-venv:
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -0700109 rm -fr ${VENVDIR}
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700110
111rebuild-venv: purge-venv venv
112
113venv: ${VENVDIR}/.built
114
115${VENVDIR}/.built:
116 @ virtualenv ${VENVDIR}
117 @ . ${VENVDIR}/bin/activate && \
Zsolt Haraszti41612482016-09-21 12:26:20 -0700118 pip install --upgrade pip; \
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -0700119 if ! pip install -r requirements.txt; \
120 then \
121 echo "On MAC OS X, if the installation failed with an error \n'<openssl/opensslv.h>': file not found,"; \
122 echo "see the BUILD.md file for a workaround"; \
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700123 else \
Zsolt Haraszti41612482016-09-21 12:26:20 -0700124 uname -s > ${VENVDIR}/.built; \
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -0700125 fi
126
Zsolt Haraszti51af3392016-09-10 22:18:45 -0700127utest: venv
128 @ echo "Executing all unit tests"
129 . ${VENVDIR}/bin/activate && \
Khen Nursimulu37a9bf82016-10-16 20:11:31 -0400130 nosetests tests --exclude-dir=./tests/itests/
131
132itest: venv
133 @ echo "Executing all integration tests"
134 . ${VENVDIR}/bin/activate && \
Khen Nursimulua54b6632016-10-18 18:01:25 -0400135 nosetests tests/itests -s
Nathan Knuth84dfd2e2016-09-16 15:06:34 -0700136
137flake8: $(DIRS_FLAKE8)
Nathan Knuth220a6772016-10-11 08:10:46 -0700138
139# end file