VPP-20: Verify valid sw_if_index in ip_address_dump.
[vpp.git] / Makefile
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
17 GDB?=gdb
18 PLATFORM?=vpp
19
20 MINIMAL_STARTUP_CONF="unix { interactive }"
21
22 GDB_ARGS= -ex "handle SIGUSR1 noprint nostop"
23
24 #
25 # OS Detection
26 #
27 OS_ID        = $(shell grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
28 OS_VERSION_ID= $(shell grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
29
30 DEB_DEPENDS  = curl build-essential autoconf automake bison libssl-dev ccache
31 DEB_DEPENDS += debhelper dkms git libtool libganglia1-dev libapr1-dev dh-systemd
32 DEB_DEPENDS += libconfuse-dev git-review exuberant-ctags cscope
33 ifeq ($(OS_VERSION_ID),14.04)
34         DEB_DEPENDS += openjdk-8-jdk-headless
35 else
36         DEB_DEPENDS += default-jdk-headless
37 endif
38
39 RPM_DEPENDS_GROUPS = 'Development Tools'
40 RPM_DEPENDS  = redhat-lsb glibc-static java-1.8.0-openjdk-devel yum-utils
41 RPM_DEPENDS += openssl-devel https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm apr-devel
42 EPEL_DEPENDS = libconfuse-devel ganglia-devel
43
44 ifneq ($(wildcard $(STARTUP_DIR)/startup.conf),)
45         STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf
46 endif
47
48 ifeq ($(findstring y,$(UNATTENDED)),y)
49 CONFIRM=-y
50 endif
51
52 .PHONY: help bootstrap wipe wipe-release build build-release rebuild rebuild-release
53 .PHONY: run run-release debug debug-release build-vat run-vat pkg-deb pkg-rpm
54 .PHONY: ctags cscope
55
56 help:
57         @echo "Make Targets:"
58         @echo " bootstrap           - prepare tree for build"
59         @echo " install-dep         - install software dependencies"
60         @echo " wipe                - wipe all products of debug build "
61         @echo " wipe-release        - wipe all products of release build "
62         @echo " build               - build debug binaries"
63         @echo " build-release       - build release binaries"
64         @echo " rebuild             - wipe and build debug binares"
65         @echo " rebuild-release     - wipe and build release binares"
66         @echo " run                 - run debug binary"
67         @echo " run-release         - run release binary"
68         @echo " debug               - run debug binary with debugger"
69         @echo " debug-release       - run release binary with debugger"
70         @echo " build-vat           - build vpp-api-test tool"
71         @echo " run-vat             - run vpp-api-test tool"
72         @echo " pkg-deb             - build DEB packages"
73         @echo " pkg-rpm             - build RPM packages"
74         @echo " ctags               - (re)generate ctags database"
75         @echo " cscope              - (re)generate cscope database"
76         @echo ""
77         @echo "Make Arguments:"
78         @echo " V=[0|1]             - set build verbosity level"
79         @echo " STARTUP_CONF=<path> - startup configuration file"
80         @echo "                       (e.g. /etc/vpp/startup.conf)"
81         @echo " STARTUP_DIR=<path>  - startup drectory (e.g. /etc/vpp)"
82         @echo "                       It also sets STARTUP_CONF if"
83         @echo "                       startup.conf file is present"
84         @echo " GDB=<path>          - gdb binary to use for debugging"
85         @echo " PLATFORM=<name>     - target platform. default is vpp"
86         @echo ""
87         @echo "Current Argumernt Values:"
88         @echo " V            = $(V)"
89         @echo " STARTUP_CONF = $(STARTUP_CONF)"
90         @echo " STARTUP_DIR  = $(STARTUP_DIR)"
91         @echo " GDB          = $(GDB)"
92         @echo " PLATFORM     = $(PLATFORM)"
93         @echo " DPDK_VERSION = $(DPDK_VERSION)"
94
95 $(BR)/.bootstrap.ok:
96 ifeq ($(OS_ID),ubuntu)
97         @MISSING=$$(apt-get install -y -qq -s $(DEB_DEPENDS) | grep "^Inst ") ; \
98         if [ -n "$$MISSING" ] ; then \
99           echo "\nPlease install missing packages: \n$$MISSING\n" ; \
100           echo "by executing \"make install-dep\"\n" ; \
101           exit 1 ; \
102         fi ; \
103         exit 0
104 endif
105         @echo "SOURCE_PATH = $(WS_ROOT)"                   > $(BR)/build-config.mk
106         @echo "#!/bin/bash\n"                              > $(BR)/path_setup
107         @echo 'export PATH=$(BR)/tools/ccache-bin:$$PATH' >> $(BR)/path_setup
108         @echo 'export PATH=$(BR)/tools/bin:$$PATH'        >> $(BR)/path_setup
109         @echo 'export CCACHE_DIR=$(CCACHE_DIR)'           >> $(BR)/path_setup
110
111 ifeq ("$(wildcard /usr/bin/ccache )","")
112         @echo "WARNING: Please install ccache AYEC and re-run this script"
113 else
114         @rm -rf $(BR)/tools/ccache-bin
115         @mkdir -p $(BR)/tools/ccache-bin
116         @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/gcc
117         @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/g++
118 endif
119         @make -C $(BR) V=$(V) is_build_tool=yes vppapigen-install
120         @touch $@
121
122 bootstrap: $(BR)/.bootstrap.ok
123
124 install-dep:
125 ifeq ($(OS_ID),ubuntu)
126 ifeq ($(OS_VERSION_ID),14.04)
127         @sudo apt-get $(CONFIRM) install software-properties-common
128         @sudo add-apt-repository $(CONFIRM) ppa:openjdk-r/ppa
129         @sudo apt-get update
130 endif
131         @sudo apt-get $(CONFIRM) install $(DEB_DEPENDS)
132 else ifneq ("$(wildcard /etc/redhat-release)","")
133         @sudo yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
134         @sudo yum install $(CONFIRM) $(RPM_DEPENDS)
135         @sudo yum install $(CONFIRM) --enablerepo=epel $(EPEL_DEPENDS)
136         @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
137 else
138         $(error "This option currently works only on Ubuntu or Centos systems")
139 endif
140
141 define make
142         @make -C $(BR) PLATFORM=$(PLATFORM) TAG=$(1) $(2)
143 endef
144
145 build: $(BR)/.bootstrap.ok
146         $(call make,$(PLATFORM)_debug,vpp-install)
147
148 wipe: $(BR)/.bootstrap.ok
149         $(call make,$(PLATFORM)_debug,vpp-wipe)
150
151 rebuild: wipe build
152
153 build-release: $(BR)/.bootstrap.ok
154         $(call make,$(PLATFORM),vpp-install)
155
156 wipe-release: $(BR)/.bootstrap.ok
157         $(call make,$(PLATFORM),vpp-wipe)
158
159 rebuild-release: wipe-release build-release
160
161 STARTUP_DIR ?= $(PWD)
162 ifeq ("$(wildcard $(STARTUP_CONF))","")
163 define run
164         @echo "WARNING: STARTUP_CONF not defined or file doesn't exist."
165         @echo "         Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n"
166         @cd $(STARTUP_DIR) && sudo $(1) $(MINIMAL_STARTUP_CONF)
167 endef
168 else
169 define run
170         @cd $(STARTUP_DIR) && sudo $(1) -c $(STARTUP_CONF)
171 endef
172 endif
173
174 %.files: .FORCE
175         @find . \( -name '*\.[chyS]' -o -name '*\.java' -o -name '*\.lex' \) -and \
176                 \( -not -path './build-root*' -o -path \
177                 './build-root/build-vpp_debug-native/dpdk*' \) > $@
178
179 .FORCE:
180
181 run:
182         $(call run, $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp)
183
184 run-release:
185         $(call run, $(BR)/install-$(PLATFORM)-native/vpp/bin/vpp)
186
187 debug:
188         $(call run, $(GDB) $(GDB_ARGS) --args $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp)
189
190 debug-release:
191         $(call run, $(GDB) $(GDB_ARGS) --args $(BR)/install-$(PLATFORM)-native/vpp/bin/vpp)
192
193 build-vat:
194         $(call make,$(PLATFORM)_debug,vpp-api-test-install)
195
196 run-vat:
197         @sudo $(BR)/install-$(PLATFORM)_debug-native/vpp-api-test/bin/vpp_api_test
198
199 pkg-deb:
200         $(call make,$(PLATFORM),install-deb)
201
202 pkg-rpm:
203         $(call make,$(PLATFORM),install-rpm)
204
205 ctags: ctags.files
206         @ctags --totals --tag-relative -L $<
207         @rm $<
208
209 cscope: cscope.files
210         @cscope -b -q -v
211