blob: a222567ee1acd60d13fcc98b377cfb25830e5d38 [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 Marione17fdb52016-02-10 00:36:06 +010024DEB_DEPENDS = curl build-essential autoconf automake bison libssl-dev ccache
Srivatsa Sangli07779152016-04-15 13:59:00 -070025DEB_DEPENDS += debhelper dkms default-jdk git libtool libganglia1-dev libapr1-dev dh-systemd
Damjan Marione6f90232016-03-16 22:49:05 +010026DEB_DEPENDS += libconfuse-dev git-review exuberant-ctags cscope
Damjan Marione17fdb52016-02-10 00:36:06 +010027
Ed Warnicke84eda9d2016-03-22 16:09:29 -050028RPM_DEPENDS_GROUPS = 'Development Tools'
29RPM_DEPENDS = redhat-lsb glibc-static java-1.8.0-openjdk-devel
Ed Warnicke3c79e652016-03-28 14:53:19 -050030RPM_DEPENDS += openssl-devel https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm apr-devel
Ed Warnicke84eda9d2016-03-22 16:09:29 -050031EPEL_DEPENDS = libconfuse-devel ganglia-devel
32
Damjan Marion0df78dd2016-03-29 22:37:02 +020033ifneq ($(wildcard $(STARTUP_DIR)/startup.conf),)
Damjan Marioneef4d992016-02-23 22:04:50 +010034 STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf
35endif
Damjan Marione17fdb52016-02-10 00:36:06 +010036
37.PHONY: help bootstrap wipe wipe-release build build-release rebuild rebuild-release
38.PHONY: run run-release debug debug-release build-vat run-vat pkg-deb pkg-rpm
Damjan Marione6f90232016-03-16 22:49:05 +010039.PHONY: ctags cscope
Damjan Marione17fdb52016-02-10 00:36:06 +010040
41help:
42 @echo "Make Targets:"
43 @echo " bootstrap - prepare tree for build"
Damjan Marionebb27fb2016-02-25 16:26:01 +010044 @echo " install-dep - install software dependencies"
Damjan Marione17fdb52016-02-10 00:36:06 +010045 @echo " wipe - wipe all products of debug build "
46 @echo " wipe-release - wipe all products of release build "
47 @echo " build - build debug binaries"
48 @echo " build-release - build release binaries"
49 @echo " rebuild - wipe and build debug binares"
50 @echo " rebuild-release - wipe and build release binares"
51 @echo " run - run debug binary"
52 @echo " run-release - run release binary"
53 @echo " debug - run debug binary with debugger"
54 @echo " debug-release - run release binary with debugger"
55 @echo " build-vat - build vpp-api-test tool"
56 @echo " run-vat - run vpp-api-test tool"
57 @echo " pkg-deb - build DEB packages"
58 @echo " pkg-rpm - build RPM packages"
Damjan Marione6f90232016-03-16 22:49:05 +010059 @echo " ctags - (re)generate ctags database"
60 @echo " cscope - (re)generate cscope database"
Damjan Marione17fdb52016-02-10 00:36:06 +010061 @echo ""
62 @echo "Make Arguments:"
63 @echo " V=[0|1] - set build verbosity level"
64 @echo " STARTUP_CONF=<path> - startup configuration file"
65 @echo " (e.g. /etc/vpp/startup.conf)"
Damjan Marioneef4d992016-02-23 22:04:50 +010066 @echo " STARTUP_DIR=<path> - startup drectory (e.g. /etc/vpp)"
67 @echo " It also sets STARTUP_CONF if"
68 @echo " startup.conf file is present"
Damjan Marione17fdb52016-02-10 00:36:06 +010069 @echo " GDB=<path> - gdb binary to use for debugging"
Damjan Marione6f90232016-03-16 22:49:05 +010070 @echo " PLATFORM=<name> - target platform. default is vpp"
Damjan Marione17fdb52016-02-10 00:36:06 +010071 @echo ""
72 @echo "Current Argumernt Values:"
73 @echo " V = $(V)"
74 @echo " STARTUP_CONF = $(STARTUP_CONF)"
Damjan Marioneef4d992016-02-23 22:04:50 +010075 @echo " STARTUP_DIR = $(STARTUP_DIR)"
Damjan Marione17fdb52016-02-10 00:36:06 +010076 @echo " GDB = $(GDB)"
Damjan Marione6f90232016-03-16 22:49:05 +010077 @echo " PLATFORM = $(PLATFORM)"
Damjan Marion0df78dd2016-03-29 22:37:02 +020078 @echo " DPDK_VERSION = $(DPDK_VERSION)"
Damjan Marione17fdb52016-02-10 00:36:06 +010079
80$(BR)/.bootstrap.ok:
81ifeq ("$(shell lsb_release -si)", "Ubuntu")
82 @MISSING=$$(apt-get install -y -qq -s $(DEB_DEPENDS) | grep "^Inst ") ; \
83 if [ -n "$$MISSING" ] ; then \
84 echo "\nPlease install missing packages: \n$$MISSING\n" ; \
Damjan Marionebb27fb2016-02-25 16:26:01 +010085 echo "by executing \"make install-dep\"\n" ; \
Damjan Marione17fdb52016-02-10 00:36:06 +010086 exit 1 ; \
87 fi ; \
88 exit 0
89endif
90 @echo "SOURCE_PATH = $(WS_ROOT)" > $(BR)/build-config.mk
91 @echo "#!/bin/bash\n" > $(BR)/path_setup
92 @echo 'export PATH=$(BR)/tools/ccache-bin:$$PATH' >> $(BR)/path_setup
93 @echo 'export PATH=$(BR)/tools/bin:$$PATH' >> $(BR)/path_setup
94 @echo 'export CCACHE_DIR=$(CCACHE_DIR)' >> $(BR)/path_setup
Ole Troan6855f6c2016-04-09 03:16:30 +020095
Damjan Marione17fdb52016-02-10 00:36:06 +010096ifeq ("$(wildcard /usr/bin/ccache )","")
97 @echo "WARNING: Please install ccache AYEC and re-run this script"
98else
99 @rm -rf $(BR)/tools/ccache-bin
100 @mkdir -p $(BR)/tools/ccache-bin
101 @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/gcc
102 @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/g++
103endif
104 @make -C $(BR) V=$(V) is_build_tool=yes vppapigen-install
105 @touch $@
106
107bootstrap: $(BR)/.bootstrap.ok
108
Damjan Marionebb27fb2016-02-25 16:26:01 +0100109install-dep:
110ifeq ("$(shell lsb_release -si)", "Ubuntu")
Ed Warnicke76a66c12016-03-17 20:37:27 -0700111 @sudo apt-get -y install $(DEB_DEPENDS)
Ed Warnicke84eda9d2016-03-22 16:09:29 -0500112else ifneq ("$(wildcard /etc/redhat-release)","")
113 @sudo yum groupinstall -y $(RPM_DEPENDS_GROUPS)
114 @sudo yum install -y $(RPM_DEPENDS)
115 @sudo yum install -y --enablerepo=epel $(EPEL_DEPENDS)
Damjan Marionebb27fb2016-02-25 16:26:01 +0100116else
Ed Warnicke84eda9d2016-03-22 16:09:29 -0500117 $(error "This option currently works only on Ubuntu or Centos systems")
Damjan Marionebb27fb2016-02-25 16:26:01 +0100118endif
119
Damjan Marione17fdb52016-02-10 00:36:06 +0100120define make
Damjan Marion6b1d7c52016-04-26 18:19:47 +0200121 @make -C $(BR) PLATFORM=$(PLATFORM) TAG=$(1) $(2)
Damjan Marione17fdb52016-02-10 00:36:06 +0100122endef
123
124build: $(BR)/.bootstrap.ok
Damjan Marione6f90232016-03-16 22:49:05 +0100125 $(call make,$(PLATFORM)_debug,vpp-install)
Damjan Marione17fdb52016-02-10 00:36:06 +0100126
127wipe: $(BR)/.bootstrap.ok
Damjan Marione6f90232016-03-16 22:49:05 +0100128 $(call make,$(PLATFORM)_debug,vpp-wipe)
Damjan Marione17fdb52016-02-10 00:36:06 +0100129
130rebuild: wipe build
131
132build-release: $(BR)/.bootstrap.ok
Damjan Marione6f90232016-03-16 22:49:05 +0100133 $(call make,$(PLATFORM),vpp-install)
Damjan Marione17fdb52016-02-10 00:36:06 +0100134
135wipe-release: $(BR)/.bootstrap.ok
Damjan Marione6f90232016-03-16 22:49:05 +0100136 $(call make,$(PLATFORM),vpp-wipe)
Damjan Marione17fdb52016-02-10 00:36:06 +0100137
138rebuild-release: wipe-release build-release
139
Damjan Marioneef4d992016-02-23 22:04:50 +0100140STARTUP_DIR ?= $(PWD)
Damjan Marione17fdb52016-02-10 00:36:06 +0100141ifeq ("$(wildcard $(STARTUP_CONF))","")
142define run
143 @echo "WARNING: STARTUP_CONF not defined or file doesn't exist."
144 @echo " Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n"
Damjan Marioneef4d992016-02-23 22:04:50 +0100145 @cd $(STARTUP_DIR) && sudo $(1) $(MINIMAL_STARTUP_CONF)
Damjan Marione17fdb52016-02-10 00:36:06 +0100146endef
147else
148define run
Damjan Marioneef4d992016-02-23 22:04:50 +0100149 @cd $(STARTUP_DIR) && sudo $(1) -c $(STARTUP_CONF)
Damjan Marione17fdb52016-02-10 00:36:06 +0100150endef
151endif
152
Damjan Marione6f90232016-03-16 22:49:05 +0100153%.files: .FORCE
154 @find . \( -name '*\.[chyS]' -o -name '*\.java' -o -name '*\.lex' \) -and \
155 \( -not -path './build-root*' -o -path \
156 './build-root/build-vpp_debug-native/dpdk*' \) > $@
157
158.FORCE:
159
Damjan Marione17fdb52016-02-10 00:36:06 +0100160run:
Damjan Marione6f90232016-03-16 22:49:05 +0100161 $(call run, $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp)
Damjan Marione17fdb52016-02-10 00:36:06 +0100162
163run-release:
Damjan Marione6f90232016-03-16 22:49:05 +0100164 $(call run, $(BR)/install-$(PLATFORM)-native/vpp/bin/vpp)
Damjan Marione17fdb52016-02-10 00:36:06 +0100165
166debug:
Damjan Marione6f90232016-03-16 22:49:05 +0100167 $(call run, $(GDB) $(GDB_ARGS) --args $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp)
Damjan Marione17fdb52016-02-10 00:36:06 +0100168
169debug-release:
Damjan Marione6f90232016-03-16 22:49:05 +0100170 $(call run, $(GDB) $(GDB_ARGS) --args $(BR)/install-$(PLATFORM)-native/vpp/bin/vpp)
Damjan Marione17fdb52016-02-10 00:36:06 +0100171
172build-vat:
Damjan Marione6f90232016-03-16 22:49:05 +0100173 $(call make,$(PLATFORM)_debug,vpp-api-test-install)
Damjan Marione17fdb52016-02-10 00:36:06 +0100174
175run-vat:
Damjan Marione6f90232016-03-16 22:49:05 +0100176 @sudo $(BR)/install-$(PLATFORM)_debug-native/vpp-api-test/bin/vpp_api_test
Damjan Marione17fdb52016-02-10 00:36:06 +0100177
178pkg-deb:
Damjan Marione6f90232016-03-16 22:49:05 +0100179 $(call make,$(PLATFORM),install-deb)
Damjan Marione17fdb52016-02-10 00:36:06 +0100180
181pkg-rpm:
Damjan Marione6f90232016-03-16 22:49:05 +0100182 $(call make,$(PLATFORM),install-rpm)
183
184ctags: ctags.files
185 @ctags --totals --tag-relative -L $<
186 @rm $<
187
188cscope: cscope.files
189 @cscope -b -q -v