blob: 3a6c7834c1e25d1784ed8749b6e1d8f722bf9814 [file] [log] [blame]
Damjan Marione17fdb52016-02-10 00:36:06 +01001# 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
14WS_ROOT=$(CURDIR)
15BR=$(WS_ROOT)/build-root
16CCACHE_DIR?=$(BR)/.ccache
Damjan Marione17fdb52016-02-10 00:36:06 +010017GDB?=gdb
Damjan Marione6f90232016-03-16 22:49:05 +010018PLATFORM?=vpp
Damjan Marione17fdb52016-02-10 00:36:06 +010019
Damjan Marion7a2a3782016-04-15 20:24:55 +020020MINIMAL_STARTUP_CONF="unix { interactive }"
Damjan Marione17fdb52016-02-10 00:36:06 +010021
Damjan Marioneef4d992016-02-23 22:04:50 +010022GDB_ARGS= -ex "handle SIGUSR1 noprint nostop"
23
Damjan Marionc5e86812016-05-02 19:40:27 +020024#
25# OS Detection
26#
Chris Luke36d25062016-09-22 20:52:26 -040027# We allow Darwin (MacOS) for docs generation; VPP build will still fail.
28ifneq ($(shell uname),Darwin)
Damjan Marionc5e86812016-05-02 19:40:27 +020029OS_ID = $(shell grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
30OS_VERSION_ID= $(shell grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
Chris Luke36d25062016-09-22 20:52:26 -040031endif
Damjan Marionc5e86812016-05-02 19:40:27 +020032
Damjan Marione17fdb52016-02-10 00:36:06 +010033DEB_DEPENDS = curl build-essential autoconf automake bison libssl-dev ccache
Ed Warnicke027103e2016-05-05 18:03:27 -050034DEB_DEPENDS += debhelper dkms git libtool libganglia1-dev libapr1-dev dh-systemd
Damjan Marione6f90232016-03-16 22:49:05 +010035DEB_DEPENDS += libconfuse-dev git-review exuberant-ctags cscope
Klement Sekera277b89c2016-10-28 13:20:27 +020036DEB_DEPENDS += python-dev python-virtualenv
Ed Warnicke027103e2016-05-05 18:03:27 -050037ifeq ($(OS_VERSION_ID),14.04)
38 DEB_DEPENDS += openjdk-8-jdk-headless
39else
40 DEB_DEPENDS += default-jdk-headless
41endif
Damjan Marione17fdb52016-02-10 00:36:06 +010042
Ed Warnicke84eda9d2016-03-22 16:09:29 -050043RPM_DEPENDS_GROUPS = 'Development Tools'
Thomas F Herbert473bf232016-04-27 16:19:03 -040044RPM_DEPENDS = redhat-lsb glibc-static java-1.8.0-openjdk-devel yum-utils
Ed Warnicke3c79e652016-03-28 14:53:19 -050045RPM_DEPENDS += openssl-devel https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm apr-devel
Chris Luke54ccf222016-07-25 16:38:11 -040046RPM_DEPENDS += python-devel
Ed Warnicke84eda9d2016-03-22 16:09:29 -050047EPEL_DEPENDS = libconfuse-devel ganglia-devel
48
Damjan Marion0df78dd2016-03-29 22:37:02 +020049ifneq ($(wildcard $(STARTUP_DIR)/startup.conf),)
Damjan Marioneef4d992016-02-23 22:04:50 +010050 STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf
51endif
Damjan Marione17fdb52016-02-10 00:36:06 +010052
Damjan Marionc5e86812016-05-02 19:40:27 +020053ifeq ($(findstring y,$(UNATTENDED)),y)
54CONFIRM=-y
Keith Burns (alagalah)f289ca62016-06-17 12:54:17 -070055FORCE=--force-yes
Damjan Marionc5e86812016-05-02 19:40:27 +020056endif
57
Damjan Marione17fdb52016-02-10 00:36:06 +010058.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 Luke54ccf222016-07-25 16:38:11 -040060.PHONY: ctags cscope plugins plugins-release build-vpp-api
Klement Sekera277b89c2016-10-28 13:20:27 +020061.PHONY: test test-debug retest retest-debug test-doc test-wipe-doc test-help test-wipe
Damjan Marione17fdb52016-02-10 00:36:06 +010062
63help:
64 @echo "Make Targets:"
65 @echo " bootstrap - prepare tree for build"
Damjan Marionebb27fb2016-02-25 16:26:01 +010066 @echo " install-dep - install software dependencies"
Damjan Marione17fdb52016-02-10 00:36:06 +010067 @echo " wipe - wipe all products of debug build "
68 @echo " wipe-release - wipe all products of release build "
69 @echo " build - build debug binaries"
70 @echo " build-release - build release binaries"
Damjan Mariona7775382016-07-07 17:56:48 +020071 @echo " plugins - build debug plugin binaries"
72 @echo " plugins-release - build release plugin binaries"
Damjan Marione17fdb52016-02-10 00:36:06 +010073 @echo " rebuild - wipe and build debug binares"
74 @echo " rebuild-release - wipe and build release binares"
75 @echo " run - run debug binary"
76 @echo " run-release - run release binary"
77 @echo " debug - run debug binary with debugger"
78 @echo " debug-release - run release binary with debugger"
Damjan Marionf56b77a2016-10-03 19:44:57 +020079 @echo " test - build and run functional tests"
80 @echo " test-debug - build and run functional tests (debug build)"
Klement Sekera277b89c2016-10-28 13:20:27 +020081 @echo " test-wipe - wipe files generated by unit tests"
Damjan Marionf56b77a2016-10-03 19:44:57 +020082 @echo " retest - run functional tests"
83 @echo " retest-debug - run functional tests (debug build)"
Klement Sekera277b89c2016-10-28 13:20:27 +020084 @echo " test-help - show help on test framework"
Damjan Marione17fdb52016-02-10 00:36:06 +010085 @echo " build-vat - build vpp-api-test tool"
Ole Troan5f9dcff2016-08-01 04:59:13 +020086 @echo " build-vpp-api - build vpp-api"
Damjan Marione17fdb52016-02-10 00:36:06 +010087 @echo " run-vat - run vpp-api-test tool"
88 @echo " pkg-deb - build DEB packages"
89 @echo " pkg-rpm - build RPM packages"
Damjan Marione6f90232016-03-16 22:49:05 +010090 @echo " ctags - (re)generate ctags database"
Damjan Mariona7775382016-07-07 17:56:48 +020091 @echo " gtags - (re)generate gtags database"
Damjan Marione6f90232016-03-16 22:49:05 +010092 @echo " cscope - (re)generate cscope database"
Damjan Marion24704852016-09-07 13:10:50 +020093 @echo " checkstyle - check coding style"
94 @echo " fixstyle - fix coding style"
Chris Luke1d1644c2016-05-13 13:41:36 -040095 @echo " doxygen - (re)generate documentation"
Chris Luke54ccf222016-07-25 16:38:11 -040096 @echo " bootstrap-doxygen - setup Doxygen dependencies"
Chris Luke1d1644c2016-05-13 13:41:36 -040097 @echo " wipe-doxygen - wipe all generated documentation"
Klement Sekera277b89c2016-10-28 13:20:27 +020098 @echo " test-doc - generate documentation for test framework"
99 @echo " test-wipe-doc - wipe documentation for test framework"
Damjan Marione17fdb52016-02-10 00:36:06 +0100100 @echo ""
101 @echo "Make Arguments:"
102 @echo " V=[0|1] - set build verbosity level"
103 @echo " STARTUP_CONF=<path> - startup configuration file"
104 @echo " (e.g. /etc/vpp/startup.conf)"
Damjan Marioneef4d992016-02-23 22:04:50 +0100105 @echo " STARTUP_DIR=<path> - startup drectory (e.g. /etc/vpp)"
106 @echo " It also sets STARTUP_CONF if"
107 @echo " startup.conf file is present"
Damjan Marione17fdb52016-02-10 00:36:06 +0100108 @echo " GDB=<path> - gdb binary to use for debugging"
Damjan Marione6f90232016-03-16 22:49:05 +0100109 @echo " PLATFORM=<name> - target platform. default is vpp"
Damjan Marionf56b77a2016-10-03 19:44:57 +0200110 @echo " TEST=<name> - only run specific test"
Damjan Marione17fdb52016-02-10 00:36:06 +0100111 @echo ""
Klement Sekera277b89c2016-10-28 13:20:27 +0200112 @echo "Current Argument Values:"
Damjan Marione17fdb52016-02-10 00:36:06 +0100113 @echo " V = $(V)"
114 @echo " STARTUP_CONF = $(STARTUP_CONF)"
Damjan Marioneef4d992016-02-23 22:04:50 +0100115 @echo " STARTUP_DIR = $(STARTUP_DIR)"
Damjan Marione17fdb52016-02-10 00:36:06 +0100116 @echo " GDB = $(GDB)"
Damjan Marione6f90232016-03-16 22:49:05 +0100117 @echo " PLATFORM = $(PLATFORM)"
Damjan Marion0df78dd2016-03-29 22:37:02 +0200118 @echo " DPDK_VERSION = $(DPDK_VERSION)"
Damjan Marione17fdb52016-02-10 00:36:06 +0100119
120$(BR)/.bootstrap.ok:
Damjan Marionc5e86812016-05-02 19:40:27 +0200121ifeq ($(OS_ID),ubuntu)
Damjan Marione17fdb52016-02-10 00:36:06 +0100122 @MISSING=$$(apt-get install -y -qq -s $(DEB_DEPENDS) | grep "^Inst ") ; \
123 if [ -n "$$MISSING" ] ; then \
124 echo "\nPlease install missing packages: \n$$MISSING\n" ; \
Damjan Marionebb27fb2016-02-25 16:26:01 +0100125 echo "by executing \"make install-dep\"\n" ; \
Damjan Marione17fdb52016-02-10 00:36:06 +0100126 exit 1 ; \
127 fi ; \
128 exit 0
129endif
Damjan Marion905a7f52016-07-07 20:27:49 +0200130 @echo "SOURCE_PATH = $(WS_ROOT)" > $(BR)/build-config.mk
Damjan Marione17fdb52016-02-10 00:36:06 +0100131 @echo "#!/bin/bash\n" > $(BR)/path_setup
132 @echo 'export PATH=$(BR)/tools/ccache-bin:$$PATH' >> $(BR)/path_setup
133 @echo 'export PATH=$(BR)/tools/bin:$$PATH' >> $(BR)/path_setup
134 @echo 'export CCACHE_DIR=$(CCACHE_DIR)' >> $(BR)/path_setup
Ole Troan6855f6c2016-04-09 03:16:30 +0200135
Damjan Marione17fdb52016-02-10 00:36:06 +0100136ifeq ("$(wildcard /usr/bin/ccache )","")
137 @echo "WARNING: Please install ccache AYEC and re-run this script"
138else
139 @rm -rf $(BR)/tools/ccache-bin
140 @mkdir -p $(BR)/tools/ccache-bin
141 @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/gcc
142 @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/g++
143endif
144 @make -C $(BR) V=$(V) is_build_tool=yes vppapigen-install
145 @touch $@
146
147bootstrap: $(BR)/.bootstrap.ok
148
Damjan Marionebb27fb2016-02-25 16:26:01 +0100149install-dep:
Damjan Marionc5e86812016-05-02 19:40:27 +0200150ifeq ($(OS_ID),ubuntu)
151ifeq ($(OS_VERSION_ID),14.04)
Keith Burns (alagalah)f289ca62016-06-17 12:54:17 -0700152 @sudo -E apt-get $(CONFIRM) $(FORCE) install software-properties-common
153 @sudo -E add-apt-repository ppa:openjdk-r/ppa $(CONFIRM)
Dave Wallaceed18a1c2016-05-13 19:00:29 -0400154 @sudo -E apt-get update
Damjan Marionc5e86812016-05-02 19:40:27 +0200155endif
Keith Burns (alagalah)f289ca62016-06-17 12:54:17 -0700156 @sudo -E apt-get $(CONFIRM) $(FORCE) install $(DEB_DEPENDS)
Ed Warnicke84eda9d2016-03-22 16:09:29 -0500157else ifneq ("$(wildcard /etc/redhat-release)","")
Damjan Marionc5e86812016-05-02 19:40:27 +0200158 @sudo yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
159 @sudo yum install $(CONFIRM) $(RPM_DEPENDS)
160 @sudo yum install $(CONFIRM) --enablerepo=epel $(EPEL_DEPENDS)
Ed Warnicked6a779c2016-05-03 16:47:50 -0500161 @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 Marionebb27fb2016-02-25 16:26:01 +0100162else
Ed Warnicke84eda9d2016-03-22 16:09:29 -0500163 $(error "This option currently works only on Ubuntu or Centos systems")
Damjan Marionebb27fb2016-02-25 16:26:01 +0100164endif
165
Damjan Marione17fdb52016-02-10 00:36:06 +0100166define make
Damjan Marion6b1d7c52016-04-26 18:19:47 +0200167 @make -C $(BR) PLATFORM=$(PLATFORM) TAG=$(1) $(2)
Damjan Marione17fdb52016-02-10 00:36:06 +0100168endef
169
170build: $(BR)/.bootstrap.ok
Damjan Marione6f90232016-03-16 22:49:05 +0100171 $(call make,$(PLATFORM)_debug,vpp-install)
Damjan Marione17fdb52016-02-10 00:36:06 +0100172
173wipe: $(BR)/.bootstrap.ok
Damjan Marione6f90232016-03-16 22:49:05 +0100174 $(call make,$(PLATFORM)_debug,vpp-wipe)
Damjan Marione17fdb52016-02-10 00:36:06 +0100175
176rebuild: wipe build
177
178build-release: $(BR)/.bootstrap.ok
Damjan Marione6f90232016-03-16 22:49:05 +0100179 $(call make,$(PLATFORM),vpp-install)
Damjan Marione17fdb52016-02-10 00:36:06 +0100180
181wipe-release: $(BR)/.bootstrap.ok
Damjan Marione6f90232016-03-16 22:49:05 +0100182 $(call make,$(PLATFORM),vpp-wipe)
Damjan Marione17fdb52016-02-10 00:36:06 +0100183
184rebuild-release: wipe-release build-release
185
Pierre Pfister35352222016-05-27 10:30:13 +0100186plugins: $(BR)/.bootstrap.ok
Ole Troan3b3688f2016-06-15 14:29:08 +0200187 $(call make,$(PLATFORM)_debug,plugins-install)
Pierre Pfister35352222016-05-27 10:30:13 +0100188
189plugins-release: $(BR)/.bootstrap.ok
Ole Troan3b3688f2016-06-15 14:29:08 +0200190 $(call make,$(PLATFORM),plugins-install)
Pierre Pfister35352222016-05-27 10:30:13 +0100191
Ole Troan5f9dcff2016-08-01 04:59:13 +0200192build-vpp-api: $(BR)/.bootstrap.ok
193 $(call make,$(PLATFORM)_debug,vpp-api-install)
194
Klement Sekera277b89c2016-10-28 13:20:27 +0200195VPP_PYTHON_PREFIX=$(BR)/python
Klement Sekeraf62ae122016-10-11 11:47:09 +0200196
Damjan Marionf56b77a2016-10-03 19:44:57 +0200197define test
Klement Sekeraf62ae122016-10-11 11:47:09 +0200198 $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=$(1) TAG=$(2) vpp-api-install plugins-install vpp-install vpp-api-test-install,)
199 make -C test \
200 VPP_TEST_BIN=$(BR)/install-$(2)-native/vpp/bin/vpp \
201 VPP_TEST_API_TEST_BIN=$(BR)/install-$(2)-native/vpp-api-test/bin/vpp_api_test \
202 VPP_TEST_PLUGIN_PATH=$(BR)/install-$(2)-native/plugins/lib64/vpp_plugins \
203 LD_LIBRARY_PATH=$(BR)/install-$(2)-native/vpp-api/lib64/ \
Klement Sekera277b89c2016-10-28 13:20:27 +0200204 WS_ROOT=$(WS_ROOT) V=$(V) TEST=$(TEST) VPP_PYTHON_PREFIX=$(VPP_PYTHON_PREFIX) $(3)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200205endef
206
Peter Ginchev53194292016-10-14 10:23:37 +0300207test: bootstrap
Klement Sekeraf62ae122016-10-11 11:47:09 +0200208 $(call test,vpp_lite,vpp_lite,test)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200209
Peter Ginchev53194292016-10-14 10:23:37 +0300210test-debug: bootstrap
Klement Sekeraf62ae122016-10-11 11:47:09 +0200211 $(call test,vpp_lite,vpp_lite_debug,test)
212
Klement Sekera277b89c2016-10-28 13:20:27 +0200213test-help:
214 @make -C test help
Klement Sekeraf62ae122016-10-11 11:47:09 +0200215
Klement Sekera277b89c2016-10-28 13:20:27 +0200216test-wipe:
217 @make -C test wipe
218
219test-doc:
220 @make -C test WS_ROOT=$(WS_ROOT) BR=$(BR) VPP_PYTHON_PREFIX=$(VPP_PYTHON_PREFIX) doc
221
222test-wipe-doc:
223 @make -C test wipe-doc BR=$(BR)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200224
225retest:
Klement Sekeraf62ae122016-10-11 11:47:09 +0200226 $(call test,vpp_lite,vpp_lite,retest)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200227
228retest-debug:
Klement Sekeraf62ae122016-10-11 11:47:09 +0200229 $(call test,vpp_lite,vpp_lite_debug,retest)
Damjan Marionf56b77a2016-10-03 19:44:57 +0200230
Damjan Marioneef4d992016-02-23 22:04:50 +0100231STARTUP_DIR ?= $(PWD)
Damjan Marione17fdb52016-02-10 00:36:06 +0100232ifeq ("$(wildcard $(STARTUP_CONF))","")
233define run
234 @echo "WARNING: STARTUP_CONF not defined or file doesn't exist."
235 @echo " Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n"
Damjan Mariona7775382016-07-07 17:56:48 +0200236 @cd $(STARTUP_DIR) && \
Damjan Marion905a7f52016-07-07 20:27:49 +0200237 sudo $(2) $(1)/vpp/bin/vpp $(MINIMAL_STARTUP_CONF) plugin_path $(1)/plugins/lib64/vpp_plugins
Damjan Marione17fdb52016-02-10 00:36:06 +0100238endef
239else
240define run
Damjan Mariona7775382016-07-07 17:56:48 +0200241 @cd $(STARTUP_DIR) && \
Damjan Marion905a7f52016-07-07 20:27:49 +0200242 sudo $(2) $(1)/vpp/bin/vpp $(shell cat $(STARTUP_CONF) | sed -e 's/#.*//') plugin_path $(1)/plugins/lib64/vpp_plugins
Damjan Marione17fdb52016-02-10 00:36:06 +0100243endef
244endif
245
Damjan Marione6f90232016-03-16 22:49:05 +0100246%.files: .FORCE
247 @find . \( -name '*\.[chyS]' -o -name '*\.java' -o -name '*\.lex' \) -and \
248 \( -not -path './build-root*' -o -path \
249 './build-root/build-vpp_debug-native/dpdk*' \) > $@
250
251.FORCE:
252
Damjan Marione17fdb52016-02-10 00:36:06 +0100253run:
Damjan Mariona7775382016-07-07 17:56:48 +0200254 $(call run, $(BR)/install-$(PLATFORM)_debug-native)
Damjan Marione17fdb52016-02-10 00:36:06 +0100255
256run-release:
Damjan Mariona7775382016-07-07 17:56:48 +0200257 $(call run, $(BR)/install-$(PLATFORM)-native)
Damjan Marione17fdb52016-02-10 00:36:06 +0100258
259debug:
Damjan Mariona7775382016-07-07 17:56:48 +0200260 $(call run, $(BR)/install-$(PLATFORM)_debug-native,$(GDB) $(GDB_ARGS) --args)
Damjan Marione17fdb52016-02-10 00:36:06 +0100261
262debug-release:
Damjan Mariona7775382016-07-07 17:56:48 +0200263 $(call run, $(BR)/install-$(PLATFORM)-native,$(GDB) $(GDB_ARGS) --args)
Damjan Marione17fdb52016-02-10 00:36:06 +0100264
265build-vat:
Damjan Marione6f90232016-03-16 22:49:05 +0100266 $(call make,$(PLATFORM)_debug,vpp-api-test-install)
Damjan Marione17fdb52016-02-10 00:36:06 +0100267
268run-vat:
Damjan Marione6f90232016-03-16 22:49:05 +0100269 @sudo $(BR)/install-$(PLATFORM)_debug-native/vpp-api-test/bin/vpp_api_test
Damjan Marione17fdb52016-02-10 00:36:06 +0100270
271pkg-deb:
Damjan Marione6f90232016-03-16 22:49:05 +0100272 $(call make,$(PLATFORM),install-deb)
Damjan Marione17fdb52016-02-10 00:36:06 +0100273
274pkg-rpm:
Damjan Marione6f90232016-03-16 22:49:05 +0100275 $(call make,$(PLATFORM),install-rpm)
276
277ctags: ctags.files
278 @ctags --totals --tag-relative -L $<
279 @rm $<
280
Keith Burns (alagalah)4b72a582016-07-02 17:54:36 -0700281gtags: ctags
282 @gtags --gtagslabel=ctags
283
Damjan Marione6f90232016-03-16 22:49:05 +0100284cscope: cscope.files
285 @cscope -b -q -v
Marek Gradzki60c63c72016-04-26 08:01:31 +0200286
Damjan Marion24704852016-09-07 13:10:50 +0200287checkstyle:
288 @build-root/scripts/checkstyle.sh
289
290fixstyle:
291 @build-root/scripts/checkstyle.sh --fix
Chris Lukeb5850972016-05-03 16:34:59 -0400292
Chris Luke1d1644c2016-05-13 13:41:36 -0400293#
294# Build the documentation
295#
296
Chris Luke54ccf222016-07-25 16:38:11 -0400297# Doxygen configuration and our utility scripts
298export DOXY_DIR ?= $(WS_ROOT)/doxygen
299
300define make-doxy
Chris Lukee0d802b2016-08-31 10:04:58 -0400301 @OS_ID="$(OS_ID)" WS_ROOT="$(WS_ROOT)" BR="$(BR)" make -C $(DOXY_DIR) $@
Chris Luke54ccf222016-07-25 16:38:11 -0400302endef
303
304.PHONY: bootstrap-doxygen doxygen wipe-doxygen
305
306bootstrap-doxygen:
307 $(call make-doxy)
Chris Lukeb5850972016-05-03 16:34:59 -0400308
Chris Lukeb5850972016-05-03 16:34:59 -0400309doxygen:
Chris Luke54ccf222016-07-25 16:38:11 -0400310 $(call make-doxy)
Chris Lukeb5850972016-05-03 16:34:59 -0400311
312wipe-doxygen:
Chris Luke54ccf222016-07-25 16:38:11 -0400313 $(call make-doxy)
314