blob: dee25667db6bbf3a5d4422341fa41f0c9b8fc716 [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#
27OS_ID = $(shell grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
28OS_VERSION_ID= $(shell grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
29
Damjan Marione17fdb52016-02-10 00:36:06 +010030DEB_DEPENDS = curl build-essential autoconf automake bison libssl-dev ccache
Ed Warnicke027103e2016-05-05 18:03:27 -050031DEB_DEPENDS += debhelper dkms git libtool libganglia1-dev libapr1-dev dh-systemd
Damjan Marione6f90232016-03-16 22:49:05 +010032DEB_DEPENDS += libconfuse-dev git-review exuberant-ctags cscope
Ed Warnicke027103e2016-05-05 18:03:27 -050033ifeq ($(OS_VERSION_ID),14.04)
34 DEB_DEPENDS += openjdk-8-jdk-headless
35else
36 DEB_DEPENDS += default-jdk-headless
37endif
Damjan Marione17fdb52016-02-10 00:36:06 +010038
Ed Warnicke84eda9d2016-03-22 16:09:29 -050039RPM_DEPENDS_GROUPS = 'Development Tools'
Thomas F Herbert473bf232016-04-27 16:19:03 -040040RPM_DEPENDS = redhat-lsb glibc-static java-1.8.0-openjdk-devel yum-utils
Ed Warnicke3c79e652016-03-28 14:53:19 -050041RPM_DEPENDS += openssl-devel https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm apr-devel
Chris Lukeb5850972016-05-03 16:34:59 -040042#RPM_DEPENDS += doxygen # TODO
Ed Warnicke84eda9d2016-03-22 16:09:29 -050043EPEL_DEPENDS = libconfuse-devel ganglia-devel
Chris Lukeb5850972016-05-03 16:34:59 -040044#EPEL_DEPENDS += graphviz # TODO
Ed Warnicke84eda9d2016-03-22 16:09:29 -050045
Damjan Marion0df78dd2016-03-29 22:37:02 +020046ifneq ($(wildcard $(STARTUP_DIR)/startup.conf),)
Damjan Marioneef4d992016-02-23 22:04:50 +010047 STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf
48endif
Damjan Marione17fdb52016-02-10 00:36:06 +010049
Damjan Marionc5e86812016-05-02 19:40:27 +020050ifeq ($(findstring y,$(UNATTENDED)),y)
51CONFIRM=-y
52endif
53
Damjan Marione17fdb52016-02-10 00:36:06 +010054.PHONY: help bootstrap wipe wipe-release build build-release rebuild rebuild-release
55.PHONY: run run-release debug debug-release build-vat run-vat pkg-deb pkg-rpm
Damjan Marione6f90232016-03-16 22:49:05 +010056.PHONY: ctags cscope
Damjan Marione17fdb52016-02-10 00:36:06 +010057
58help:
59 @echo "Make Targets:"
60 @echo " bootstrap - prepare tree for build"
Damjan Marionebb27fb2016-02-25 16:26:01 +010061 @echo " install-dep - install software dependencies"
Damjan Marione17fdb52016-02-10 00:36:06 +010062 @echo " wipe - wipe all products of debug build "
63 @echo " wipe-release - wipe all products of release build "
64 @echo " build - build debug binaries"
65 @echo " build-release - build release binaries"
66 @echo " rebuild - wipe and build debug binares"
67 @echo " rebuild-release - wipe and build release binares"
68 @echo " run - run debug binary"
69 @echo " run-release - run release binary"
70 @echo " debug - run debug binary with debugger"
71 @echo " debug-release - run release binary with debugger"
72 @echo " build-vat - build vpp-api-test tool"
73 @echo " run-vat - run vpp-api-test tool"
74 @echo " pkg-deb - build DEB packages"
75 @echo " pkg-rpm - build RPM packages"
Damjan Marione6f90232016-03-16 22:49:05 +010076 @echo " ctags - (re)generate ctags database"
77 @echo " cscope - (re)generate cscope database"
Damjan Marione17fdb52016-02-10 00:36:06 +010078 @echo ""
79 @echo "Make Arguments:"
80 @echo " V=[0|1] - set build verbosity level"
81 @echo " STARTUP_CONF=<path> - startup configuration file"
82 @echo " (e.g. /etc/vpp/startup.conf)"
Damjan Marioneef4d992016-02-23 22:04:50 +010083 @echo " STARTUP_DIR=<path> - startup drectory (e.g. /etc/vpp)"
84 @echo " It also sets STARTUP_CONF if"
85 @echo " startup.conf file is present"
Damjan Marione17fdb52016-02-10 00:36:06 +010086 @echo " GDB=<path> - gdb binary to use for debugging"
Damjan Marione6f90232016-03-16 22:49:05 +010087 @echo " PLATFORM=<name> - target platform. default is vpp"
Damjan Marione17fdb52016-02-10 00:36:06 +010088 @echo ""
89 @echo "Current Argumernt Values:"
90 @echo " V = $(V)"
91 @echo " STARTUP_CONF = $(STARTUP_CONF)"
Damjan Marioneef4d992016-02-23 22:04:50 +010092 @echo " STARTUP_DIR = $(STARTUP_DIR)"
Damjan Marione17fdb52016-02-10 00:36:06 +010093 @echo " GDB = $(GDB)"
Damjan Marione6f90232016-03-16 22:49:05 +010094 @echo " PLATFORM = $(PLATFORM)"
Damjan Marion0df78dd2016-03-29 22:37:02 +020095 @echo " DPDK_VERSION = $(DPDK_VERSION)"
Damjan Marione17fdb52016-02-10 00:36:06 +010096
97$(BR)/.bootstrap.ok:
Damjan Marionc5e86812016-05-02 19:40:27 +020098ifeq ($(OS_ID),ubuntu)
Damjan Marione17fdb52016-02-10 00:36:06 +010099 @MISSING=$$(apt-get install -y -qq -s $(DEB_DEPENDS) | grep "^Inst ") ; \
100 if [ -n "$$MISSING" ] ; then \
101 echo "\nPlease install missing packages: \n$$MISSING\n" ; \
Damjan Marionebb27fb2016-02-25 16:26:01 +0100102 echo "by executing \"make install-dep\"\n" ; \
Damjan Marione17fdb52016-02-10 00:36:06 +0100103 exit 1 ; \
104 fi ; \
105 exit 0
106endif
107 @echo "SOURCE_PATH = $(WS_ROOT)" > $(BR)/build-config.mk
108 @echo "#!/bin/bash\n" > $(BR)/path_setup
109 @echo 'export PATH=$(BR)/tools/ccache-bin:$$PATH' >> $(BR)/path_setup
110 @echo 'export PATH=$(BR)/tools/bin:$$PATH' >> $(BR)/path_setup
111 @echo 'export CCACHE_DIR=$(CCACHE_DIR)' >> $(BR)/path_setup
Ole Troan6855f6c2016-04-09 03:16:30 +0200112
Damjan Marione17fdb52016-02-10 00:36:06 +0100113ifeq ("$(wildcard /usr/bin/ccache )","")
114 @echo "WARNING: Please install ccache AYEC and re-run this script"
115else
116 @rm -rf $(BR)/tools/ccache-bin
117 @mkdir -p $(BR)/tools/ccache-bin
118 @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/gcc
119 @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/g++
120endif
121 @make -C $(BR) V=$(V) is_build_tool=yes vppapigen-install
122 @touch $@
123
124bootstrap: $(BR)/.bootstrap.ok
125
Damjan Marionebb27fb2016-02-25 16:26:01 +0100126install-dep:
Damjan Marionc5e86812016-05-02 19:40:27 +0200127ifeq ($(OS_ID),ubuntu)
128ifeq ($(OS_VERSION_ID),14.04)
129 @sudo apt-get $(CONFIRM) install software-properties-common
130 @sudo add-apt-repository $(CONFIRM) ppa:openjdk-r/ppa
131 @sudo apt-get update
132endif
133 @sudo apt-get $(CONFIRM) install $(DEB_DEPENDS)
Ed Warnicke84eda9d2016-03-22 16:09:29 -0500134else ifneq ("$(wildcard /etc/redhat-release)","")
Damjan Marionc5e86812016-05-02 19:40:27 +0200135 @sudo yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
136 @sudo yum install $(CONFIRM) $(RPM_DEPENDS)
137 @sudo yum install $(CONFIRM) --enablerepo=epel $(EPEL_DEPENDS)
Ed Warnicked6a779c2016-05-03 16:47:50 -0500138 @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 +0100139else
Ed Warnicke84eda9d2016-03-22 16:09:29 -0500140 $(error "This option currently works only on Ubuntu or Centos systems")
Damjan Marionebb27fb2016-02-25 16:26:01 +0100141endif
142
Damjan Marione17fdb52016-02-10 00:36:06 +0100143define make
Damjan Marion6b1d7c52016-04-26 18:19:47 +0200144 @make -C $(BR) PLATFORM=$(PLATFORM) TAG=$(1) $(2)
Damjan Marione17fdb52016-02-10 00:36:06 +0100145endef
146
147build: $(BR)/.bootstrap.ok
Damjan Marione6f90232016-03-16 22:49:05 +0100148 $(call make,$(PLATFORM)_debug,vpp-install)
Damjan Marione17fdb52016-02-10 00:36:06 +0100149
150wipe: $(BR)/.bootstrap.ok
Damjan Marione6f90232016-03-16 22:49:05 +0100151 $(call make,$(PLATFORM)_debug,vpp-wipe)
Damjan Marione17fdb52016-02-10 00:36:06 +0100152
153rebuild: wipe build
154
155build-release: $(BR)/.bootstrap.ok
Damjan Marione6f90232016-03-16 22:49:05 +0100156 $(call make,$(PLATFORM),vpp-install)
Damjan Marione17fdb52016-02-10 00:36:06 +0100157
158wipe-release: $(BR)/.bootstrap.ok
Damjan Marione6f90232016-03-16 22:49:05 +0100159 $(call make,$(PLATFORM),vpp-wipe)
Damjan Marione17fdb52016-02-10 00:36:06 +0100160
161rebuild-release: wipe-release build-release
162
Damjan Marioneef4d992016-02-23 22:04:50 +0100163STARTUP_DIR ?= $(PWD)
Damjan Marione17fdb52016-02-10 00:36:06 +0100164ifeq ("$(wildcard $(STARTUP_CONF))","")
165define run
166 @echo "WARNING: STARTUP_CONF not defined or file doesn't exist."
167 @echo " Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n"
Damjan Marioneef4d992016-02-23 22:04:50 +0100168 @cd $(STARTUP_DIR) && sudo $(1) $(MINIMAL_STARTUP_CONF)
Damjan Marione17fdb52016-02-10 00:36:06 +0100169endef
170else
171define run
Damjan Marioneef4d992016-02-23 22:04:50 +0100172 @cd $(STARTUP_DIR) && sudo $(1) -c $(STARTUP_CONF)
Damjan Marione17fdb52016-02-10 00:36:06 +0100173endef
174endif
175
Damjan Marione6f90232016-03-16 22:49:05 +0100176%.files: .FORCE
177 @find . \( -name '*\.[chyS]' -o -name '*\.java' -o -name '*\.lex' \) -and \
178 \( -not -path './build-root*' -o -path \
179 './build-root/build-vpp_debug-native/dpdk*' \) > $@
180
181.FORCE:
182
Damjan Marione17fdb52016-02-10 00:36:06 +0100183run:
Damjan Marione6f90232016-03-16 22:49:05 +0100184 $(call run, $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp)
Damjan Marione17fdb52016-02-10 00:36:06 +0100185
186run-release:
Damjan Marione6f90232016-03-16 22:49:05 +0100187 $(call run, $(BR)/install-$(PLATFORM)-native/vpp/bin/vpp)
Damjan Marione17fdb52016-02-10 00:36:06 +0100188
189debug:
Damjan Marione6f90232016-03-16 22:49:05 +0100190 $(call run, $(GDB) $(GDB_ARGS) --args $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp)
Damjan Marione17fdb52016-02-10 00:36:06 +0100191
192debug-release:
Damjan Marione6f90232016-03-16 22:49:05 +0100193 $(call run, $(GDB) $(GDB_ARGS) --args $(BR)/install-$(PLATFORM)-native/vpp/bin/vpp)
Damjan Marione17fdb52016-02-10 00:36:06 +0100194
195build-vat:
Damjan Marione6f90232016-03-16 22:49:05 +0100196 $(call make,$(PLATFORM)_debug,vpp-api-test-install)
Damjan Marione17fdb52016-02-10 00:36:06 +0100197
198run-vat:
Damjan Marione6f90232016-03-16 22:49:05 +0100199 @sudo $(BR)/install-$(PLATFORM)_debug-native/vpp-api-test/bin/vpp_api_test
Damjan Marione17fdb52016-02-10 00:36:06 +0100200
201pkg-deb:
Damjan Marione6f90232016-03-16 22:49:05 +0100202 $(call make,$(PLATFORM),install-deb)
Damjan Marione17fdb52016-02-10 00:36:06 +0100203
204pkg-rpm:
Damjan Marione6f90232016-03-16 22:49:05 +0100205 $(call make,$(PLATFORM),install-rpm)
206
207ctags: ctags.files
208 @ctags --totals --tag-relative -L $<
209 @rm $<
210
211cscope: cscope.files
212 @cscope -b -q -v
Marek Gradzki60c63c72016-04-26 08:01:31 +0200213
Chris Lukeb5850972016-05-03 16:34:59 -0400214
215DOXY_INPUT = \
216 README.md \
217 vppinfra \
218 svm \
219 vlib \
220 vlib-api \
221 vnet \
222 vpp \
223 vpp-api
224
225.PHONY: doxygen
226doxygen:
227 @mkdir -p "$(BR)/docs"
228 ROOT="$(WS_ROOT)" \
229 BUILD_ROOT="$(BR)" \
230 INPUT="$(addprefix $(WS_ROOT)/,$(DOXY_INPUT))" \
231 HTML=YES \
232 VERSION="`git describe --tags --dirty`" \
233 doxygen doxygen/doxygen.cfg
234
235wipe-doxygen:
236 rm -rf "$(BR)/docs"