blob: 9b387552db19a8cfbb2d93b091d7825c2c0242c4 [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
17V?=0
18GDB?=gdb
Damjan Marione6f90232016-03-16 22:49:05 +010019PLATFORM?=vpp
Damjan Marione17fdb52016-02-10 00:36:06 +010020
21MINIMAL_STARTUP_CONF="unix { interactive } dpdk { no-pci socket-mem 1024 }"
22
Damjan Marioneef4d992016-02-23 22:04:50 +010023GDB_ARGS= -ex "handle SIGUSR1 noprint nostop"
24
Damjan Marione17fdb52016-02-10 00:36:06 +010025DEB_DEPENDS = curl build-essential autoconf automake bison libssl-dev ccache
26DEB_DEPENDS += debhelper dkms openjdk-7-jdk git libtool libganglia1-dev libapr1-dev
Damjan Marione6f90232016-03-16 22:49:05 +010027DEB_DEPENDS += libconfuse-dev git-review exuberant-ctags cscope
Damjan Marione17fdb52016-02-10 00:36:06 +010028
Damjan Marioneef4d992016-02-23 22:04:50 +010029ifneq ("$(wildcard $(STARTUP_DIR)/startup.conf),"")
30 STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf
31endif
Damjan Marione17fdb52016-02-10 00:36:06 +010032
33.PHONY: help bootstrap wipe wipe-release build build-release rebuild rebuild-release
34.PHONY: run run-release debug debug-release build-vat run-vat pkg-deb pkg-rpm
Damjan Marione6f90232016-03-16 22:49:05 +010035.PHONY: ctags cscope
Damjan Marione17fdb52016-02-10 00:36:06 +010036
37help:
38 @echo "Make Targets:"
39 @echo " bootstrap - prepare tree for build"
Damjan Marionebb27fb2016-02-25 16:26:01 +010040 @echo " install-dep - install software dependencies"
Damjan Marione17fdb52016-02-10 00:36:06 +010041 @echo " wipe - wipe all products of debug build "
42 @echo " wipe-release - wipe all products of release build "
43 @echo " build - build debug binaries"
44 @echo " build-release - build release binaries"
45 @echo " rebuild - wipe and build debug binares"
46 @echo " rebuild-release - wipe and build release binares"
47 @echo " run - run debug binary"
48 @echo " run-release - run release binary"
49 @echo " debug - run debug binary with debugger"
50 @echo " debug-release - run release binary with debugger"
51 @echo " build-vat - build vpp-api-test tool"
52 @echo " run-vat - run vpp-api-test tool"
53 @echo " pkg-deb - build DEB packages"
54 @echo " pkg-rpm - build RPM packages"
Damjan Marione6f90232016-03-16 22:49:05 +010055 @echo " ctags - (re)generate ctags database"
56 @echo " cscope - (re)generate cscope database"
Damjan Marione17fdb52016-02-10 00:36:06 +010057 @echo ""
58 @echo "Make Arguments:"
59 @echo " V=[0|1] - set build verbosity level"
60 @echo " STARTUP_CONF=<path> - startup configuration file"
61 @echo " (e.g. /etc/vpp/startup.conf)"
Damjan Marioneef4d992016-02-23 22:04:50 +010062 @echo " STARTUP_DIR=<path> - startup drectory (e.g. /etc/vpp)"
63 @echo " It also sets STARTUP_CONF if"
64 @echo " startup.conf file is present"
Damjan Marione17fdb52016-02-10 00:36:06 +010065 @echo " GDB=<path> - gdb binary to use for debugging"
Damjan Marione6f90232016-03-16 22:49:05 +010066 @echo " PLATFORM=<name> - target platform. default is vpp"
Damjan Marione17fdb52016-02-10 00:36:06 +010067 @echo ""
68 @echo "Current Argumernt Values:"
69 @echo " V = $(V)"
70 @echo " STARTUP_CONF = $(STARTUP_CONF)"
Damjan Marioneef4d992016-02-23 22:04:50 +010071 @echo " STARTUP_DIR = $(STARTUP_DIR)"
Damjan Marione17fdb52016-02-10 00:36:06 +010072 @echo " GDB = $(GDB)"
Damjan Marione6f90232016-03-16 22:49:05 +010073 @echo " PLATFORM = $(PLATFORM)"
Damjan Marione17fdb52016-02-10 00:36:06 +010074
75$(BR)/.bootstrap.ok:
76ifeq ("$(shell lsb_release -si)", "Ubuntu")
77 @MISSING=$$(apt-get install -y -qq -s $(DEB_DEPENDS) | grep "^Inst ") ; \
78 if [ -n "$$MISSING" ] ; then \
79 echo "\nPlease install missing packages: \n$$MISSING\n" ; \
Damjan Marionebb27fb2016-02-25 16:26:01 +010080 echo "by executing \"make install-dep\"\n" ; \
Damjan Marione17fdb52016-02-10 00:36:06 +010081 exit 1 ; \
82 fi ; \
83 exit 0
84endif
85 @echo "SOURCE_PATH = $(WS_ROOT)" > $(BR)/build-config.mk
86 @echo "#!/bin/bash\n" > $(BR)/path_setup
87 @echo 'export PATH=$(BR)/tools/ccache-bin:$$PATH' >> $(BR)/path_setup
88 @echo 'export PATH=$(BR)/tools/bin:$$PATH' >> $(BR)/path_setup
89 @echo 'export CCACHE_DIR=$(CCACHE_DIR)' >> $(BR)/path_setup
90
91ifeq ("$(wildcard /usr/bin/ccache )","")
92 @echo "WARNING: Please install ccache AYEC and re-run this script"
93else
94 @rm -rf $(BR)/tools/ccache-bin
95 @mkdir -p $(BR)/tools/ccache-bin
96 @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/gcc
97 @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/g++
98endif
99 @make -C $(BR) V=$(V) is_build_tool=yes vppapigen-install
100 @touch $@
101
102bootstrap: $(BR)/.bootstrap.ok
103
Damjan Marionebb27fb2016-02-25 16:26:01 +0100104install-dep:
105ifeq ("$(shell lsb_release -si)", "Ubuntu")
Ed Warnicke76a66c12016-03-17 20:37:27 -0700106 @sudo apt-get -y install $(DEB_DEPENDS)
Damjan Marionebb27fb2016-02-25 16:26:01 +0100107else
108 $(error "This option currently works only on Ubuntu systems")
109endif
110
Damjan Marione17fdb52016-02-10 00:36:06 +0100111define make
Damjan Marione6f90232016-03-16 22:49:05 +0100112 @make -C $(BR) V=$(V) PLATFORM=$(PLATFORM) TAG=$(1) $(2)
Damjan Marione17fdb52016-02-10 00:36:06 +0100113endef
114
115build: $(BR)/.bootstrap.ok
Damjan Marione6f90232016-03-16 22:49:05 +0100116 $(call make,$(PLATFORM)_debug,vpp-install)
Damjan Marione17fdb52016-02-10 00:36:06 +0100117
118wipe: $(BR)/.bootstrap.ok
Damjan Marione6f90232016-03-16 22:49:05 +0100119 $(call make,$(PLATFORM)_debug,vpp-wipe)
Damjan Marione17fdb52016-02-10 00:36:06 +0100120
121rebuild: wipe build
122
123build-release: $(BR)/.bootstrap.ok
Damjan Marione6f90232016-03-16 22:49:05 +0100124 $(call make,$(PLATFORM),vpp-install)
Damjan Marione17fdb52016-02-10 00:36:06 +0100125
126wipe-release: $(BR)/.bootstrap.ok
Damjan Marione6f90232016-03-16 22:49:05 +0100127 $(call make,$(PLATFORM),vpp-wipe)
Damjan Marione17fdb52016-02-10 00:36:06 +0100128
129rebuild-release: wipe-release build-release
130
Damjan Marioneef4d992016-02-23 22:04:50 +0100131STARTUP_DIR ?= $(PWD)
Damjan Marione17fdb52016-02-10 00:36:06 +0100132ifeq ("$(wildcard $(STARTUP_CONF))","")
133define run
134 @echo "WARNING: STARTUP_CONF not defined or file doesn't exist."
135 @echo " Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n"
Damjan Marioneef4d992016-02-23 22:04:50 +0100136 @cd $(STARTUP_DIR) && sudo $(1) $(MINIMAL_STARTUP_CONF)
Damjan Marione17fdb52016-02-10 00:36:06 +0100137endef
138else
139define run
Damjan Marioneef4d992016-02-23 22:04:50 +0100140 @cd $(STARTUP_DIR) && sudo $(1) -c $(STARTUP_CONF)
Damjan Marione17fdb52016-02-10 00:36:06 +0100141endef
142endif
143
Damjan Marione6f90232016-03-16 22:49:05 +0100144%.files: .FORCE
145 @find . \( -name '*\.[chyS]' -o -name '*\.java' -o -name '*\.lex' \) -and \
146 \( -not -path './build-root*' -o -path \
147 './build-root/build-vpp_debug-native/dpdk*' \) > $@
148
149.FORCE:
150
Damjan Marione17fdb52016-02-10 00:36:06 +0100151run:
Damjan Marione6f90232016-03-16 22:49:05 +0100152 $(call run, $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp)
Damjan Marione17fdb52016-02-10 00:36:06 +0100153
154run-release:
Damjan Marione6f90232016-03-16 22:49:05 +0100155 $(call run, $(BR)/install-$(PLATFORM)-native/vpp/bin/vpp)
Damjan Marione17fdb52016-02-10 00:36:06 +0100156
157debug:
Damjan Marione6f90232016-03-16 22:49:05 +0100158 $(call run, $(GDB) $(GDB_ARGS) --args $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp)
Damjan Marione17fdb52016-02-10 00:36:06 +0100159
160debug-release:
Damjan Marione6f90232016-03-16 22:49:05 +0100161 $(call run, $(GDB) $(GDB_ARGS) --args $(BR)/install-$(PLATFORM)-native/vpp/bin/vpp)
Damjan Marione17fdb52016-02-10 00:36:06 +0100162
163build-vat:
Damjan Marione6f90232016-03-16 22:49:05 +0100164 $(call make,$(PLATFORM)_debug,vpp-api-test-install)
Damjan Marione17fdb52016-02-10 00:36:06 +0100165
166run-vat:
Damjan Marione6f90232016-03-16 22:49:05 +0100167 @sudo $(BR)/install-$(PLATFORM)_debug-native/vpp-api-test/bin/vpp_api_test
Damjan Marione17fdb52016-02-10 00:36:06 +0100168
169pkg-deb:
Damjan Marione6f90232016-03-16 22:49:05 +0100170 $(call make,$(PLATFORM),install-deb)
Damjan Marione17fdb52016-02-10 00:36:06 +0100171
172pkg-rpm:
Damjan Marione6f90232016-03-16 22:49:05 +0100173 $(call make,$(PLATFORM),install-rpm)
174
175ctags: ctags.files
176 @ctags --totals --tag-relative -L $<
177 @rm $<
178
179cscope: cscope.files
180 @cscope -b -q -v