Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 1 | # Copyright (c) 2016 Cisco and/or its affiliates. |
| 2 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 3 | # you may not use this file except in compliance with the License. |
| 4 | # You may obtain a copy of the License at: |
| 5 | # |
| 6 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | # |
| 8 | # Unless required by applicable law or agreed to in writing, software |
| 9 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 11 | # See the License for the specific language governing permissions and |
| 12 | # limitations under the License. |
| 13 | |
| 14 | WS_ROOT=$(CURDIR) |
| 15 | BR=$(WS_ROOT)/build-root |
| 16 | CCACHE_DIR?=$(BR)/.ccache |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 17 | GDB?=gdb |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 18 | PLATFORM?=vpp |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 19 | |
Damjan Marion | 7a2a378 | 2016-04-15 20:24:55 +0200 | [diff] [blame] | 20 | MINIMAL_STARTUP_CONF="unix { interactive }" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 21 | |
Damjan Marion | eef4d99 | 2016-02-23 22:04:50 +0100 | [diff] [blame] | 22 | GDB_ARGS= -ex "handle SIGUSR1 noprint nostop" |
| 23 | |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 24 | # |
| 25 | # OS Detection |
| 26 | # |
Chris Luke | 36d2506 | 2016-09-22 20:52:26 -0400 | [diff] [blame] | 27 | # We allow Darwin (MacOS) for docs generation; VPP build will still fail. |
| 28 | ifneq ($(shell uname),Darwin) |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 29 | OS_ID = $(shell grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g') |
| 30 | OS_VERSION_ID= $(shell grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g') |
Chris Luke | 36d2506 | 2016-09-22 20:52:26 -0400 | [diff] [blame] | 31 | endif |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 32 | |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 33 | DEB_DEPENDS = curl build-essential autoconf automake bison libssl-dev ccache |
Ed Warnicke | 027103e | 2016-05-05 18:03:27 -0500 | [diff] [blame] | 34 | DEB_DEPENDS += debhelper dkms git libtool libganglia1-dev libapr1-dev dh-systemd |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 35 | DEB_DEPENDS += libconfuse-dev git-review exuberant-ctags cscope |
Ray Kinsella | 1a9b5b7 | 2016-12-21 14:25:40 +0000 | [diff] [blame] | 36 | DEB_DEPENDS += python-dev python-virtualenv python-pip lcov chrpath autoconf |
Ed Warnicke | 027103e | 2016-05-05 18:03:27 -0500 | [diff] [blame] | 37 | ifeq ($(OS_VERSION_ID),14.04) |
| 38 | DEB_DEPENDS += openjdk-8-jdk-headless |
| 39 | else |
| 40 | DEB_DEPENDS += default-jdk-headless |
| 41 | endif |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 42 | |
Ed Warnicke | 84eda9d | 2016-03-22 16:09:29 -0500 | [diff] [blame] | 43 | RPM_DEPENDS_GROUPS = 'Development Tools' |
Thomas F Herbert | 473bf23 | 2016-04-27 16:19:03 -0400 | [diff] [blame] | 44 | RPM_DEPENDS = redhat-lsb glibc-static java-1.8.0-openjdk-devel yum-utils |
Ed Warnicke | 3c79e65 | 2016-03-28 14:53:19 -0500 | [diff] [blame] | 45 | RPM_DEPENDS += openssl-devel https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm apr-devel |
Damjan Marion | a1bd023 | 2016-12-19 19:08:11 +0100 | [diff] [blame] | 46 | RPM_DEPENDS += python-devel python-virtualenv lcov chrpath |
Ed Warnicke | 84eda9d | 2016-03-22 16:09:29 -0500 | [diff] [blame] | 47 | EPEL_DEPENDS = libconfuse-devel ganglia-devel |
| 48 | |
Damjan Marion | 0df78dd | 2016-03-29 22:37:02 +0200 | [diff] [blame] | 49 | ifneq ($(wildcard $(STARTUP_DIR)/startup.conf),) |
Damjan Marion | eef4d99 | 2016-02-23 22:04:50 +0100 | [diff] [blame] | 50 | STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf |
| 51 | endif |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 52 | |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 53 | ifeq ($(findstring y,$(UNATTENDED)),y) |
| 54 | CONFIRM=-y |
Keith Burns (alagalah) | f289ca6 | 2016-06-17 12:54:17 -0700 | [diff] [blame] | 55 | FORCE=--force-yes |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 56 | endif |
| 57 | |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 58 | .PHONY: help bootstrap wipe wipe-release build build-release rebuild rebuild-release |
| 59 | .PHONY: run run-release debug debug-release build-vat run-vat pkg-deb pkg-rpm |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 60 | .PHONY: ctags cscope plugins plugins-release build-vpp-api |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 61 | .PHONY: test test-debug retest retest-debug test-doc test-wipe-doc test-help test-wipe |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 62 | .PHONY: test-cov test-wipe-cov |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 63 | |
| 64 | help: |
| 65 | @echo "Make Targets:" |
| 66 | @echo " bootstrap - prepare tree for build" |
Damjan Marion | ebb27fb | 2016-02-25 16:26:01 +0100 | [diff] [blame] | 67 | @echo " install-dep - install software dependencies" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 68 | @echo " wipe - wipe all products of debug build " |
| 69 | @echo " wipe-release - wipe all products of release build " |
| 70 | @echo " build - build debug binaries" |
| 71 | @echo " build-release - build release binaries" |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 72 | @echo " plugins - build debug plugin binaries" |
| 73 | @echo " plugins-release - build release plugin binaries" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 74 | @echo " rebuild - wipe and build debug binares" |
| 75 | @echo " rebuild-release - wipe and build release binares" |
| 76 | @echo " run - run debug binary" |
| 77 | @echo " run-release - run release binary" |
| 78 | @echo " debug - run debug binary with debugger" |
| 79 | @echo " debug-release - run release binary with debugger" |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 80 | @echo " test - build and run functional tests" |
| 81 | @echo " test-debug - build and run functional tests (debug build)" |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 82 | @echo " test-wipe - wipe files generated by unit tests" |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 83 | @echo " retest - run functional tests" |
| 84 | @echo " retest-debug - run functional tests (debug build)" |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 85 | @echo " test-help - show help on test framework" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 86 | @echo " build-vat - build vpp-api-test tool" |
Ole Troan | 5f9dcff | 2016-08-01 04:59:13 +0200 | [diff] [blame] | 87 | @echo " build-vpp-api - build vpp-api" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 88 | @echo " run-vat - run vpp-api-test tool" |
| 89 | @echo " pkg-deb - build DEB packages" |
| 90 | @echo " pkg-rpm - build RPM packages" |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 91 | @echo " ctags - (re)generate ctags database" |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 92 | @echo " gtags - (re)generate gtags database" |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 93 | @echo " cscope - (re)generate cscope database" |
Damjan Marion | 2470485 | 2016-09-07 13:10:50 +0200 | [diff] [blame] | 94 | @echo " checkstyle - check coding style" |
| 95 | @echo " fixstyle - fix coding style" |
Chris Luke | 1d1644c | 2016-05-13 13:41:36 -0400 | [diff] [blame] | 96 | @echo " doxygen - (re)generate documentation" |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 97 | @echo " bootstrap-doxygen - setup Doxygen dependencies" |
Chris Luke | 1d1644c | 2016-05-13 13:41:36 -0400 | [diff] [blame] | 98 | @echo " wipe-doxygen - wipe all generated documentation" |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 99 | @echo " test-doc - generate documentation for test framework" |
| 100 | @echo " test-wipe-doc - wipe documentation for test framework" |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 101 | @echo " test-cov - generate code coverage report for test framework" |
| 102 | @echo " test-wipe-cov - wipe code coverage report for test framework" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 103 | @echo "" |
| 104 | @echo "Make Arguments:" |
| 105 | @echo " V=[0|1] - set build verbosity level" |
| 106 | @echo " STARTUP_CONF=<path> - startup configuration file" |
| 107 | @echo " (e.g. /etc/vpp/startup.conf)" |
Damjan Marion | eef4d99 | 2016-02-23 22:04:50 +0100 | [diff] [blame] | 108 | @echo " STARTUP_DIR=<path> - startup drectory (e.g. /etc/vpp)" |
| 109 | @echo " It also sets STARTUP_CONF if" |
| 110 | @echo " startup.conf file is present" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 111 | @echo " GDB=<path> - gdb binary to use for debugging" |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 112 | @echo " PLATFORM=<name> - target platform. default is vpp" |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 113 | @echo " TEST=<name> - only run specific test" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 114 | @echo "" |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 115 | @echo "Current Argument Values:" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 116 | @echo " V = $(V)" |
| 117 | @echo " STARTUP_CONF = $(STARTUP_CONF)" |
Damjan Marion | eef4d99 | 2016-02-23 22:04:50 +0100 | [diff] [blame] | 118 | @echo " STARTUP_DIR = $(STARTUP_DIR)" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 119 | @echo " GDB = $(GDB)" |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 120 | @echo " PLATFORM = $(PLATFORM)" |
Damjan Marion | 0df78dd | 2016-03-29 22:37:02 +0200 | [diff] [blame] | 121 | @echo " DPDK_VERSION = $(DPDK_VERSION)" |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 122 | |
| 123 | $(BR)/.bootstrap.ok: |
Damjan Marion | c21d59f | 2016-11-19 12:04:34 +0100 | [diff] [blame] | 124 | ifeq ($(findstring y,$(UNATTENDED)),y) |
| 125 | make install-dep |
| 126 | endif |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 127 | ifeq ($(OS_ID),ubuntu) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 128 | @MISSING=$$(apt-get install -y -qq -s $(DEB_DEPENDS) | grep "^Inst ") ; \ |
| 129 | if [ -n "$$MISSING" ] ; then \ |
| 130 | echo "\nPlease install missing packages: \n$$MISSING\n" ; \ |
Damjan Marion | ebb27fb | 2016-02-25 16:26:01 +0100 | [diff] [blame] | 131 | echo "by executing \"make install-dep\"\n" ; \ |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 132 | exit 1 ; \ |
| 133 | fi ; \ |
| 134 | exit 0 |
| 135 | endif |
Damjan Marion | 905a7f5 | 2016-07-07 20:27:49 +0200 | [diff] [blame] | 136 | @echo "SOURCE_PATH = $(WS_ROOT)" > $(BR)/build-config.mk |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 137 | @echo "#!/bin/bash\n" > $(BR)/path_setup |
| 138 | @echo 'export PATH=$(BR)/tools/ccache-bin:$$PATH' >> $(BR)/path_setup |
| 139 | @echo 'export PATH=$(BR)/tools/bin:$$PATH' >> $(BR)/path_setup |
| 140 | @echo 'export CCACHE_DIR=$(CCACHE_DIR)' >> $(BR)/path_setup |
Ole Troan | 6855f6c | 2016-04-09 03:16:30 +0200 | [diff] [blame] | 141 | |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 142 | ifeq ("$(wildcard /usr/bin/ccache )","") |
| 143 | @echo "WARNING: Please install ccache AYEC and re-run this script" |
| 144 | else |
| 145 | @rm -rf $(BR)/tools/ccache-bin |
| 146 | @mkdir -p $(BR)/tools/ccache-bin |
| 147 | @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/gcc |
| 148 | @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/g++ |
| 149 | endif |
| 150 | @make -C $(BR) V=$(V) is_build_tool=yes vppapigen-install |
| 151 | @touch $@ |
| 152 | |
| 153 | bootstrap: $(BR)/.bootstrap.ok |
| 154 | |
Damjan Marion | ebb27fb | 2016-02-25 16:26:01 +0100 | [diff] [blame] | 155 | install-dep: |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 156 | ifeq ($(OS_ID),ubuntu) |
| 157 | ifeq ($(OS_VERSION_ID),14.04) |
Keith Burns (alagalah) | f289ca6 | 2016-06-17 12:54:17 -0700 | [diff] [blame] | 158 | @sudo -E apt-get $(CONFIRM) $(FORCE) install software-properties-common |
| 159 | @sudo -E add-apt-repository ppa:openjdk-r/ppa $(CONFIRM) |
Dave Wallace | ed18a1c | 2016-05-13 19:00:29 -0400 | [diff] [blame] | 160 | @sudo -E apt-get update |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 161 | endif |
Keith Burns (alagalah) | f289ca6 | 2016-06-17 12:54:17 -0700 | [diff] [blame] | 162 | @sudo -E apt-get $(CONFIRM) $(FORCE) install $(DEB_DEPENDS) |
Ed Warnicke | 84eda9d | 2016-03-22 16:09:29 -0500 | [diff] [blame] | 163 | else ifneq ("$(wildcard /etc/redhat-release)","") |
Damjan Marion | c5e8681 | 2016-05-02 19:40:27 +0200 | [diff] [blame] | 164 | @sudo yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS) |
| 165 | @sudo yum install $(CONFIRM) $(RPM_DEPENDS) |
| 166 | @sudo yum install $(CONFIRM) --enablerepo=epel $(EPEL_DEPENDS) |
Ed Warnicke | d6a779c | 2016-05-03 16:47:50 -0500 | [diff] [blame] | 167 | @sudo debuginfo-install $(CONFIRM) glibc-2.17-106.el7_2.4.x86_64 openssl-libs-1.0.1e-51.el7_2.4.x86_64 zlib-1.2.7-15.el7.x86_64 |
Damjan Marion | ebb27fb | 2016-02-25 16:26:01 +0100 | [diff] [blame] | 168 | else |
Ed Warnicke | 84eda9d | 2016-03-22 16:09:29 -0500 | [diff] [blame] | 169 | $(error "This option currently works only on Ubuntu or Centos systems") |
Damjan Marion | ebb27fb | 2016-02-25 16:26:01 +0100 | [diff] [blame] | 170 | endif |
| 171 | |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 172 | define make |
Damjan Marion | 6b1d7c5 | 2016-04-26 18:19:47 +0200 | [diff] [blame] | 173 | @make -C $(BR) PLATFORM=$(PLATFORM) TAG=$(1) $(2) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 174 | endef |
| 175 | |
Thomas F Herbert | 20a29c7 | 2016-10-13 18:36:50 -0400 | [diff] [blame] | 176 | $(BR)/scripts/.version: |
| 177 | ifneq ("$(wildcard /etc/redhat-release)","") |
| 178 | $(shell $(BR)/scripts/version rpm-string > $(BR)/scripts/.version) |
| 179 | else |
| 180 | $(shell $(BR)/scripts/version > $(BR)/scripts/.version) |
| 181 | endif |
| 182 | |
| 183 | dist: $(BR)/scripts/.version |
| 184 | $(MAKE) verstring=$(PLATFORM)-$(shell cat $(BR)/scripts/.version) prefix=$(PLATFORM) distversion |
| 185 | |
| 186 | distversion: $(BR)/scripts/.version |
| 187 | $(BR)/scripts/verdist ${BR} ${prefix}-$(shell $(BR)/scripts/version rpm-version) ${verstring} |
| 188 | mv $(verstring).tar.gz $(BR)/rpm |
| 189 | |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 190 | build: $(BR)/.bootstrap.ok |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 191 | $(call make,$(PLATFORM)_debug,vpp-install) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 192 | |
Thomas F Herbert | 20a29c7 | 2016-10-13 18:36:50 -0400 | [diff] [blame] | 193 | wipedist: |
| 194 | $(RM) $(BR)/scripts/.version $(BR)/rpm/*.tar.gz |
| 195 | |
| 196 | wipe: wipedist $(BR)/.bootstrap.ok |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 197 | $(call make,$(PLATFORM)_debug,vpp-wipe) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 198 | |
| 199 | rebuild: wipe build |
| 200 | |
| 201 | build-release: $(BR)/.bootstrap.ok |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 202 | $(call make,$(PLATFORM),vpp-install) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 203 | |
| 204 | wipe-release: $(BR)/.bootstrap.ok |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 205 | $(call make,$(PLATFORM),vpp-wipe) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 206 | |
| 207 | rebuild-release: wipe-release build-release |
| 208 | |
Pierre Pfister | 3535222 | 2016-05-27 10:30:13 +0100 | [diff] [blame] | 209 | plugins: $(BR)/.bootstrap.ok |
Ole Troan | 3b3688f | 2016-06-15 14:29:08 +0200 | [diff] [blame] | 210 | $(call make,$(PLATFORM)_debug,plugins-install) |
Pierre Pfister | 3535222 | 2016-05-27 10:30:13 +0100 | [diff] [blame] | 211 | |
| 212 | plugins-release: $(BR)/.bootstrap.ok |
Ole Troan | 3b3688f | 2016-06-15 14:29:08 +0200 | [diff] [blame] | 213 | $(call make,$(PLATFORM),plugins-install) |
Pierre Pfister | 3535222 | 2016-05-27 10:30:13 +0100 | [diff] [blame] | 214 | |
Ole Troan | 5f9dcff | 2016-08-01 04:59:13 +0200 | [diff] [blame] | 215 | build-vpp-api: $(BR)/.bootstrap.ok |
| 216 | $(call make,$(PLATFORM)_debug,vpp-api-install) |
| 217 | |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 218 | VPP_PYTHON_PREFIX=$(BR)/python |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 219 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 220 | define test |
Matej Klotton | 86d87c4 | 2016-11-11 11:38:55 +0100 | [diff] [blame] | 221 | $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=$(1) TAG=$(2) vpp-api-install plugins-install vpp-install,) |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 222 | make -C test \ |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 223 | BR=$(BR) \ |
| 224 | VPP_TEST_BUILD_DIR=$(BR)/build-$(2)-native \ |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 225 | VPP_TEST_BIN=$(BR)/install-$(2)-native/vpp/bin/vpp \ |
| 226 | VPP_TEST_API_TEST_BIN=$(BR)/install-$(2)-native/vpp-api-test/bin/vpp_api_test \ |
| 227 | VPP_TEST_PLUGIN_PATH=$(BR)/install-$(2)-native/plugins/lib64/vpp_plugins \ |
Ole Troan | 7e3a875 | 2016-12-05 10:27:09 +0100 | [diff] [blame] | 228 | VPP_TEST_INSTALL_PATH=$(BR)/install-$(2)-native/ \ |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 229 | LD_LIBRARY_PATH=$(BR)/install-$(2)-native/vpp-api/lib64/ \ |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 230 | WS_ROOT=$(WS_ROOT) V=$(V) TEST=$(TEST) VPP_PYTHON_PREFIX=$(VPP_PYTHON_PREFIX) $(3) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 231 | endef |
| 232 | |
Peter Ginchev | 5319429 | 2016-10-14 10:23:37 +0300 | [diff] [blame] | 233 | test: bootstrap |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 234 | $(call test,vpp_lite,vpp_lite,test) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 235 | |
Peter Ginchev | 5319429 | 2016-10-14 10:23:37 +0300 | [diff] [blame] | 236 | test-debug: bootstrap |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 237 | $(call test,vpp_lite,vpp_lite_debug,test) |
| 238 | |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 239 | test-help: |
| 240 | @make -C test help |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 241 | |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 242 | test-wipe: |
| 243 | @make -C test wipe |
| 244 | |
| 245 | test-doc: |
| 246 | @make -C test WS_ROOT=$(WS_ROOT) BR=$(BR) VPP_PYTHON_PREFIX=$(VPP_PYTHON_PREFIX) doc |
| 247 | |
| 248 | test-wipe-doc: |
| 249 | @make -C test wipe-doc BR=$(BR) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 250 | |
Klement Sekera | 9225dee | 2016-12-12 08:36:58 +0100 | [diff] [blame] | 251 | test-cov: bootstrap |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 252 | $(call test,vpp_lite,vpp_lite_gcov,cov) |
| 253 | |
| 254 | test-wipe-cov: |
| 255 | @make -C test wipe-cov BR=$(BR) |
| 256 | |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 257 | retest: |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 258 | $(call test,vpp_lite,vpp_lite,retest) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 259 | |
| 260 | retest-debug: |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 261 | $(call test,vpp_lite,vpp_lite_debug,retest) |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 262 | |
Damjan Marion | eef4d99 | 2016-02-23 22:04:50 +0100 | [diff] [blame] | 263 | STARTUP_DIR ?= $(PWD) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 264 | ifeq ("$(wildcard $(STARTUP_CONF))","") |
| 265 | define run |
| 266 | @echo "WARNING: STARTUP_CONF not defined or file doesn't exist." |
| 267 | @echo " Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n" |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 268 | @cd $(STARTUP_DIR) && \ |
Damjan Marion | 905a7f5 | 2016-07-07 20:27:49 +0200 | [diff] [blame] | 269 | sudo $(2) $(1)/vpp/bin/vpp $(MINIMAL_STARTUP_CONF) plugin_path $(1)/plugins/lib64/vpp_plugins |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 270 | endef |
| 271 | else |
| 272 | define run |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 273 | @cd $(STARTUP_DIR) && \ |
Damjan Marion | 905a7f5 | 2016-07-07 20:27:49 +0200 | [diff] [blame] | 274 | sudo $(2) $(1)/vpp/bin/vpp $(shell cat $(STARTUP_CONF) | sed -e 's/#.*//') plugin_path $(1)/plugins/lib64/vpp_plugins |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 275 | endef |
| 276 | endif |
| 277 | |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 278 | %.files: .FORCE |
| 279 | @find . \( -name '*\.[chyS]' -o -name '*\.java' -o -name '*\.lex' \) -and \ |
| 280 | \( -not -path './build-root*' -o -path \ |
| 281 | './build-root/build-vpp_debug-native/dpdk*' \) > $@ |
| 282 | |
| 283 | .FORCE: |
| 284 | |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 285 | run: |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 286 | $(call run, $(BR)/install-$(PLATFORM)_debug-native) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 287 | |
| 288 | run-release: |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 289 | $(call run, $(BR)/install-$(PLATFORM)-native) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 290 | |
| 291 | debug: |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 292 | $(call run, $(BR)/install-$(PLATFORM)_debug-native,$(GDB) $(GDB_ARGS) --args) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 293 | |
| 294 | debug-release: |
Damjan Marion | a777538 | 2016-07-07 17:56:48 +0200 | [diff] [blame] | 295 | $(call run, $(BR)/install-$(PLATFORM)-native,$(GDB) $(GDB_ARGS) --args) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 296 | |
| 297 | build-vat: |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 298 | $(call make,$(PLATFORM)_debug,vpp-api-test-install) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 299 | |
| 300 | run-vat: |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 301 | @sudo $(BR)/install-$(PLATFORM)_debug-native/vpp-api-test/bin/vpp_api_test |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 302 | |
| 303 | pkg-deb: |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 304 | $(call make,$(PLATFORM),install-deb) |
Damjan Marion | e17fdb5 | 2016-02-10 00:36:06 +0100 | [diff] [blame] | 305 | |
Thomas F Herbert | 20a29c7 | 2016-10-13 18:36:50 -0400 | [diff] [blame] | 306 | pkg-rpm: dist |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 307 | $(call make,$(PLATFORM),install-rpm) |
| 308 | |
| 309 | ctags: ctags.files |
| 310 | @ctags --totals --tag-relative -L $< |
| 311 | @rm $< |
| 312 | |
Keith Burns (alagalah) | 4b72a58 | 2016-07-02 17:54:36 -0700 | [diff] [blame] | 313 | gtags: ctags |
| 314 | @gtags --gtagslabel=ctags |
| 315 | |
Damjan Marion | e6f9023 | 2016-03-16 22:49:05 +0100 | [diff] [blame] | 316 | cscope: cscope.files |
| 317 | @cscope -b -q -v |
Marek Gradzki | 60c63c7 | 2016-04-26 08:01:31 +0200 | [diff] [blame] | 318 | |
Damjan Marion | 2470485 | 2016-09-07 13:10:50 +0200 | [diff] [blame] | 319 | checkstyle: |
| 320 | @build-root/scripts/checkstyle.sh |
| 321 | |
| 322 | fixstyle: |
| 323 | @build-root/scripts/checkstyle.sh --fix |
Chris Luke | b585097 | 2016-05-03 16:34:59 -0400 | [diff] [blame] | 324 | |
Chris Luke | 1d1644c | 2016-05-13 13:41:36 -0400 | [diff] [blame] | 325 | # |
| 326 | # Build the documentation |
| 327 | # |
| 328 | |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 329 | # Doxygen configuration and our utility scripts |
| 330 | export DOXY_DIR ?= $(WS_ROOT)/doxygen |
| 331 | |
| 332 | define make-doxy |
Chris Luke | e0d802b | 2016-08-31 10:04:58 -0400 | [diff] [blame] | 333 | @OS_ID="$(OS_ID)" WS_ROOT="$(WS_ROOT)" BR="$(BR)" make -C $(DOXY_DIR) $@ |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 334 | endef |
| 335 | |
| 336 | .PHONY: bootstrap-doxygen doxygen wipe-doxygen |
| 337 | |
| 338 | bootstrap-doxygen: |
| 339 | $(call make-doxy) |
Chris Luke | b585097 | 2016-05-03 16:34:59 -0400 | [diff] [blame] | 340 | |
Chris Luke | b585097 | 2016-05-03 16:34:59 -0400 | [diff] [blame] | 341 | doxygen: |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 342 | $(call make-doxy) |
Chris Luke | b585097 | 2016-05-03 16:34:59 -0400 | [diff] [blame] | 343 | |
| 344 | wipe-doxygen: |
Chris Luke | 54ccf22 | 2016-07-25 16:38:11 -0400 | [diff] [blame] | 345 | $(call make-doxy) |
| 346 | |
Damjan Marion | e30872e | 2016-11-12 01:23:55 +0100 | [diff] [blame] | 347 | define banner |
| 348 | @echo "========================================================================" |
| 349 | @echo " $(1)" |
| 350 | @echo "========================================================================" |
| 351 | @echo " " |
| 352 | endef |
| 353 | |
Ed Warnicke | cfce8fa | 2016-11-22 17:48:13 +0000 | [diff] [blame] | 354 | verify: install-dep $(BR)/.bootstrap.ok |
Ed Warnicke | ddff8a4 | 2016-11-22 17:57:30 +0000 | [diff] [blame] | 355 | $(call banner,"Building for PLATFORM=vpp using gcc") |
| 356 | @make -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages |
| 357 | $(call banner,"Building for PLATFORM=vpp_lite using gcc") |
| 358 | @make -C build-root PLATFORM=vpp_lite TAG=vpp_lite wipe-all install-packages |
Damjan Marion | e30872e | 2016-11-12 01:23:55 +0100 | [diff] [blame] | 359 | ifeq ($(OS_ID),ubuntu) |
| 360 | ifeq ($(OS_VERSION_ID),16.04) |
| 361 | $(call banner,"Installing dependencies") |
| 362 | @sudo -E apt-get update |
| 363 | @sudo -E apt-get $(CONFIRM) $(FORCE) install clang |
| 364 | $(call banner,"Building for PLATFORM=vpp using clang") |
| 365 | @make -C build-root CC=clang PLATFORM=vpp TAG=vpp_clang wipe-all install-packages |
| 366 | endif |
Ed Warnicke | 1038937 | 2016-11-30 17:45:42 -0600 | [diff] [blame] | 367 | $(call banner,"Building deb packages") |
Ed Warnicke | ddff8a4 | 2016-11-22 17:57:30 +0000 | [diff] [blame] | 368 | @make pkg-deb |
Damjan Marion | e30872e | 2016-11-12 01:23:55 +0100 | [diff] [blame] | 369 | endif |
Ed Warnicke | ddff8a4 | 2016-11-22 17:57:30 +0000 | [diff] [blame] | 370 | ifeq ($(OS_ID),centos) |
Ed Warnicke | 1038937 | 2016-11-30 17:45:42 -0600 | [diff] [blame] | 371 | $(call banner,"Building rpm packages") |
Ed Warnicke | ddff8a4 | 2016-11-22 17:57:30 +0000 | [diff] [blame] | 372 | @make pkg-rpm |
| 373 | endif |
| 374 | |
| 375 | |