blob: 210f304275459b275d081e3b9dd6b73986a934db [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 Knuth84dfd2e2016-09-16 15:06:34 -070017include setup.mk
18
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070019VENVDIR := venv
20
Nathan Knuth84dfd2e2016-09-16 15:06:34 -070021.PHONY: $(DIRS) $(DIRS_CLEAN) $(DIRS_FLAKE8) flake8
22
Nathan Knuth5157de02016-09-16 15:20:37 -070023default: build
24
Nathan Knuth84dfd2e2016-09-16 15:06:34 -070025## New directories can be added here
26DIRS:=\
27voltha
28
29## If one directory depends on another directory that
30## dependency can be expressed here
31##
32## For example, if the Tibit directory depended on the eoam
33## directory being built first, then that can be expressed here.
34## driver/tibit: eoam
35
36# Parallel Build
37$(DIRS):
38 @echo " MK $@"
39 $(Q)$(MAKE) -C $@
40
41# Parallel Clean
42DIRS_CLEAN = $(addsuffix .clean,$(DIRS))
43$(DIRS_CLEAN):
44 @echo " CLEAN $(basename $@)"
45 $(Q)$(MAKE) -C $(basename $@) clean
46
47# Parallel Flake8
48DIRS_FLAKE8 = $(addsuffix .flake8,$(DIRS))
49$(DIRS_FLAKE8):
50 @echo " FLAKE8 $(basename $@)"
51 $(Q)$(MAKE) -C $(basename $@) flake8
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070052
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070053help:
54 @echo "Usage: make [<target>]"
55 @echo "where available targets are:"
56 @echo
57 @echo "build : Build the Voltha docker image (default target)"
Zsolt Harasztib71c2a02016-09-12 13:12:07 -070058 @echo "clean : Remove files created by the build and tests"
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070059 @echo "fetch : Pre-fetch artifacts for subsequent local builds"
Nathan Knuthc0a80c82016-09-16 15:17:45 -070060 @echo "flake8 : Run specifically flake8 tests"
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070061 @echo "help : Print this help"
Zsolt Haraszti51af3392016-09-10 22:18:45 -070062 @echo "rebuild-venv : Rebuild local Python virtualenv from scratch"
63 @echo "venv : Build local Python virtualenv if did not exist yet"
64 @echo "utest : Run all unit tests"
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070065 @echo
66
Nathan Knuthe65a3672016-09-14 21:36:52 -070067vagrant:
68 vagrant up
69
Zsolt Haraszti51af3392016-09-10 22:18:45 -070070build: fetch utest
71 docker build -t cord/voltha -f Dockerfile .
72
Zsolt Harasztib71c2a02016-09-12 13:12:07 -070073clean:
74 find voltha -name '*.pyc' | xargs rm -f
75
Zsolt Haraszti51af3392016-09-10 22:18:45 -070076fetch:
Zsolt Harasztif2da1d02016-09-13 23:21:35 -070077 docker pull consul:latest
78 docker pull fluent/fluentd:latest
79 docker pull gliderlabs/registrator:latest
Zsolt Haraszti51af3392016-09-10 22:18:45 -070080
81purge-venv:
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070082 rm -fr ${VENVDIR}
Zsolt Haraszti51af3392016-09-10 22:18:45 -070083
84rebuild-venv: purge-venv venv
85
86venv: ${VENVDIR}/.built
87
88${VENVDIR}/.built:
89 @ virtualenv ${VENVDIR}
90 @ . ${VENVDIR}/bin/activate && \
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070091 if ! pip install -r requirements.txt; \
92 then \
93 echo "On MAC OS X, if the installation failed with an error \n'<openssl/opensslv.h>': file not found,"; \
94 echo "see the BUILD.md file for a workaround"; \
Zsolt Haraszti51af3392016-09-10 22:18:45 -070095 else \
96 touch ${VENVDIR}/.built; \
Zsolt Haraszti8fa9da02016-09-10 17:34:03 -070097 fi
98
Zsolt Haraszti51af3392016-09-10 22:18:45 -070099utest: venv
100 @ echo "Executing all unit tests"
101 . ${VENVDIR}/bin/activate && \
102 nosetests tests
Nathan Knuth84dfd2e2016-09-16 15:06:34 -0700103
104flake8: $(DIRS_FLAKE8)