Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 1 | # |
| 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 Knuth | edc88da | 2016-09-17 00:28:05 -0700 | [diff] [blame] | 17 | ifeq ($(VOLTHA_BASE)_set,_set) |
| 18 | $(error To get started, please source the env.sh file) |
| 19 | endif |
| 20 | |
Nathan Knuth | 84dfd2e | 2016-09-16 15:06:34 -0700 | [diff] [blame] | 21 | include setup.mk |
| 22 | |
Zsolt Haraszti | 4161248 | 2016-09-21 12:26:20 -0700 | [diff] [blame] | 23 | VENVDIR := venv-$(shell uname -s | tr '[:upper:]' '[:lower:]') |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 24 | |
Nathan Knuth | 84dfd2e | 2016-09-16 15:06:34 -0700 | [diff] [blame] | 25 | .PHONY: $(DIRS) $(DIRS_CLEAN) $(DIRS_FLAKE8) flake8 |
| 26 | |
Nathan Knuth | 5157de0 | 2016-09-16 15:20:37 -0700 | [diff] [blame] | 27 | default: build |
| 28 | |
Nathan Knuth | 84dfd2e | 2016-09-16 15:06:34 -0700 | [diff] [blame] | 29 | ## New directories can be added here |
| 30 | DIRS:=\ |
Nathan Knuth | daa1f6e | 2016-09-17 00:17:31 -0700 | [diff] [blame] | 31 | voltha \ |
Nathan Knuth | edc88da | 2016-09-17 00:28:05 -0700 | [diff] [blame] | 32 | voltha/northbound/openflow \ |
| 33 | voltha/northbound/openflow/agent \ |
| 34 | voltha/northbound/openflow/oftest |
Nathan Knuth | 84dfd2e | 2016-09-16 15:06:34 -0700 | [diff] [blame] | 35 | |
| 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 |
| 49 | DIRS_CLEAN = $(addsuffix .clean,$(DIRS)) |
| 50 | $(DIRS_CLEAN): |
| 51 | @echo " CLEAN $(basename $@)" |
| 52 | $(Q)$(MAKE) -C $(basename $@) clean |
| 53 | |
| 54 | # Parallel Flake8 |
| 55 | DIRS_FLAKE8 = $(addsuffix .flake8,$(DIRS)) |
| 56 | $(DIRS_FLAKE8): |
| 57 | @echo " FLAKE8 $(basename $@)" |
Nathan Knuth | 950dff2 | 2016-09-17 16:12:34 -0700 | [diff] [blame] | 58 | -$(Q)$(MAKE) -C $(basename $@) flake8 |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 59 | |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 60 | help: |
| 61 | @echo "Usage: make [<target>]" |
| 62 | @echo "where available targets are:" |
| 63 | @echo |
| 64 | @echo "build : Build the Voltha docker image (default target)" |
Zsolt Haraszti | b71c2a0 | 2016-09-12 13:12:07 -0700 | [diff] [blame] | 65 | @echo "clean : Remove files created by the build and tests" |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 66 | @echo "fetch : Pre-fetch artifacts for subsequent local builds" |
Nathan Knuth | c0a80c8 | 2016-09-16 15:17:45 -0700 | [diff] [blame] | 67 | @echo "flake8 : Run specifically flake8 tests" |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 68 | @echo "help : Print this help" |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 69 | @echo "rebuild-venv : Rebuild local Python virtualenv from scratch" |
| 70 | @echo "venv : Build local Python virtualenv if did not exist yet" |
| 71 | @echo "utest : Run all unit tests" |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 72 | @echo |
| 73 | |
Zsolt Haraszti | a54f2ac | 2016-09-21 15:54:15 -0700 | [diff] [blame] | 74 | build: utest build-protos |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 75 | docker build -t cord/voltha -f Dockerfile . |
| 76 | |
Zsolt Haraszti | a54f2ac | 2016-09-21 15:54:15 -0700 | [diff] [blame] | 77 | build-protos: |
| 78 | make -C voltha/core/protos |
| 79 | |
| 80 | install-protoc: |
| 81 | make -C voltha/core/protos install-protoc |
| 82 | |
Zsolt Haraszti | b71c2a0 | 2016-09-12 13:12:07 -0700 | [diff] [blame] | 83 | clean: |
| 84 | find voltha -name '*.pyc' | xargs rm -f |
| 85 | |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 86 | fetch: |
Zsolt Haraszti | f2da1d0 | 2016-09-13 23:21:35 -0700 | [diff] [blame] | 87 | docker pull consul:latest |
| 88 | docker pull fluent/fluentd:latest |
| 89 | docker pull gliderlabs/registrator:latest |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 90 | |
| 91 | purge-venv: |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 92 | rm -fr ${VENVDIR} |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 93 | |
| 94 | rebuild-venv: purge-venv venv |
| 95 | |
| 96 | venv: ${VENVDIR}/.built |
| 97 | |
| 98 | ${VENVDIR}/.built: |
| 99 | @ virtualenv ${VENVDIR} |
| 100 | @ . ${VENVDIR}/bin/activate && \ |
Zsolt Haraszti | 4161248 | 2016-09-21 12:26:20 -0700 | [diff] [blame] | 101 | pip install --upgrade pip; \ |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 102 | if ! pip install -r requirements.txt; \ |
| 103 | then \ |
| 104 | echo "On MAC OS X, if the installation failed with an error \n'<openssl/opensslv.h>': file not found,"; \ |
| 105 | echo "see the BUILD.md file for a workaround"; \ |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 106 | else \ |
Zsolt Haraszti | 4161248 | 2016-09-21 12:26:20 -0700 | [diff] [blame] | 107 | uname -s > ${VENVDIR}/.built; \ |
Zsolt Haraszti | 8fa9da0 | 2016-09-10 17:34:03 -0700 | [diff] [blame] | 108 | fi |
| 109 | |
Zsolt Haraszti | 51af339 | 2016-09-10 22:18:45 -0700 | [diff] [blame] | 110 | utest: venv |
| 111 | @ echo "Executing all unit tests" |
| 112 | . ${VENVDIR}/bin/activate && \ |
| 113 | nosetests tests |
Nathan Knuth | 84dfd2e | 2016-09-16 15:06:34 -0700 | [diff] [blame] | 114 | |
| 115 | flake8: $(DIRS_FLAKE8) |