LISP: do not try to delete paths when fwd entry is negative
[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 export WS_ROOT=$(CURDIR)
15 export 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 # We allow Darwin (MacOS) for docs generation; VPP build will still fail.
28 ifneq ($(shell uname),Darwin)
29 OS_ID        = $(shell grep '^ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
30 OS_VERSION_ID= $(shell grep '^VERSION_ID=' /etc/os-release | cut -f2- -d= | sed -e 's/\"//g')
31 endif
32
33 ifeq ($(filter ubuntu debian,$(OS_ID)),$(OS_ID))
34 PKG=deb
35 else ifeq ($(filter rhel centos fedora,$(OS_ID)),$(OS_ID))
36 PKG=rpm
37 endif
38
39 DEB_DEPENDS  = curl build-essential autoconf automake bison libssl-dev ccache
40 DEB_DEPENDS += debhelper dkms git libtool libganglia1-dev libapr1-dev dh-systemd
41 DEB_DEPENDS += libconfuse-dev git-review exuberant-ctags cscope pkg-config
42 DEB_DEPENDS += lcov chrpath autoconf nasm indent
43 DEB_DEPENDS += python-all python-dev python-virtualenv python-pip libffi6
44 ifeq ($(OS_VERSION_ID),14.04)
45         DEB_DEPENDS += openjdk-8-jdk-headless
46 else
47         DEB_DEPENDS += default-jdk-headless
48 endif
49
50 RPM_DEPENDS  = redhat-lsb glibc-static java-1.8.0-openjdk-devel yum-utils
51 RPM_DEPENDS += openssl-devel https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm apr-devel
52 RPM_DEPENDS += python-devel
53 ifeq ($(OS_ID)-$(OS_VERSION_ID),fedora-25)
54         RPM_DEPENDS += python2-virtualenv
55         RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries'
56 else
57         RPM_DEPENDS += python-virtualenv
58         RPM_DEPENDS_GROUPS = 'Development Tools'
59 endif
60 RPM_DEPENDS += chrpath libffi-devel rpm-build
61 RPM_DEPENDS += https://kojipkgs.fedoraproject.org//packages/nasm/2.12.02/2.fc26/x86_64/nasm-2.12.02-2.fc26.x86_64.rpm
62 EPEL_DEPENDS = libconfuse-devel ganglia-devel epel-rpm-macros
63 ifeq ($(filter rhel centos,$(OS_ID)),$(OS_ID))
64         EPEL_DEPENDS += lcov
65 else
66         RPM_DEPENDS += lcov
67 endif
68
69 ifneq ($(wildcard $(STARTUP_DIR)/startup.conf),)
70         STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf
71 endif
72
73 ifeq ($(findstring y,$(UNATTENDED)),y)
74 CONFIRM=-y
75 FORCE=--force-yes
76 endif
77
78 .PHONY: help bootstrap wipe wipe-release build build-release rebuild rebuild-release
79 .PHONY: run run-release debug debug-release build-vat run-vat pkg-deb pkg-rpm
80 .PHONY: ctags cscope
81 .PHONY: test test-debug retest retest-debug test-doc test-wipe-doc test-help test-wipe
82 .PHONY: test-cov test-wipe-cov
83
84 help:
85         @echo "Make Targets:"
86         @echo " bootstrap           - prepare tree for build"
87         @echo " install-dep         - install software dependencies"
88         @echo " wipe                - wipe all products of debug build "
89         @echo " wipe-release        - wipe all products of release build "
90         @echo " build               - build debug binaries"
91         @echo " build-release       - build release binaries"
92         @echo " build-coverity      - build coverity artifacts"
93         @echo " rebuild             - wipe and build debug binares"
94         @echo " rebuild-release     - wipe and build release binares"
95         @echo " run                 - run debug binary"
96         @echo " run-release         - run release binary"
97         @echo " debug               - run debug binary with debugger"
98         @echo " debug-release       - run release binary with debugger"
99         @echo " test                - build and run (basic) functional tests"
100         @echo " test-debug          - build and run (basic) functional tests (debug build)"
101         @echo " test-all            - build and run (all) functional tests"
102         @echo " test-all-debug      - build and run (all) functional tests (debug build)"
103         @echo " test-shell          - enter shell with test environment"
104         @echo " test-shell-debug    - enter shell with test environment (debug build)"
105         @echo " test-wipe           - wipe files generated by unit tests"
106         @echo " retest              - run functional tests"
107         @echo " retest-debug        - run functional tests (debug build)"
108         @echo " test-help           - show help on test framework"
109         @echo " run-vat             - run vpp-api-test tool"
110         @echo " pkg-deb             - build DEB packages"
111         @echo " pkg-rpm             - build RPM packages"
112         @echo " dpdk-install-dev    - install DPDK development packages"
113         @echo " ctags               - (re)generate ctags database"
114         @echo " gtags               - (re)generate gtags database"
115         @echo " cscope              - (re)generate cscope database"
116         @echo " checkstyle          - check coding style"
117         @echo " fixstyle            - fix coding style"
118         @echo " doxygen             - (re)generate documentation"
119         @echo " bootstrap-doxygen   - setup Doxygen dependencies"
120         @echo " wipe-doxygen        - wipe all generated documentation"
121         @echo " test-doc            - generate documentation for test framework"
122         @echo " test-wipe-doc       - wipe documentation for test framework"
123         @echo " test-cov            - generate code coverage report for test framework"
124         @echo " test-wipe-cov       - wipe code coverage report for test framework"
125         @echo " test-checkstyle     - check PEP8 compliance for test framework"
126         @echo ""
127         @echo "Make Arguments:"
128         @echo " V=[0|1]             - set build verbosity level"
129         @echo " STARTUP_CONF=<path> - startup configuration file"
130         @echo "                       (e.g. /etc/vpp/startup.conf)"
131         @echo " STARTUP_DIR=<path>  - startup drectory (e.g. /etc/vpp)"
132         @echo "                       It also sets STARTUP_CONF if"
133         @echo "                       startup.conf file is present"
134         @echo " GDB=<path>          - gdb binary to use for debugging"
135         @echo " PLATFORM=<name>     - target platform. default is vpp"
136         @echo " TEST=<filter>       - apply filter to test set, see test-help"
137         @echo ""
138         @echo "Current Argument Values:"
139         @echo " V            = $(V)"
140         @echo " STARTUP_CONF = $(STARTUP_CONF)"
141         @echo " STARTUP_DIR  = $(STARTUP_DIR)"
142         @echo " GDB          = $(GDB)"
143         @echo " PLATFORM     = $(PLATFORM)"
144         @echo " DPDK_VERSION = $(DPDK_VERSION)"
145
146 $(BR)/.bootstrap.ok:
147 ifeq ($(findstring y,$(UNATTENDED)),y)
148         make install-dep
149 endif
150 ifeq ($(OS_ID),ubuntu)
151         @MISSING=$$(apt-get install -y -qq -s $(DEB_DEPENDS) | grep "^Inst ") ; \
152         if [ -n "$$MISSING" ] ; then \
153           echo "\nPlease install missing packages: \n$$MISSING\n" ; \
154           echo "by executing \"make install-dep\"\n" ; \
155           exit 1 ; \
156         fi ; \
157         exit 0
158 else ifneq ("$(wildcard /etc/redhat-release)","")
159         @for i in $(RPM_DEPENDS) $(EPEL_DEPENDS) ; do \
160             RPM=$$(basename -s .rpm "$${i##*/}" | cut -d- -f1,2,3)  ;   \
161             if [[ "$$RPM" =~ "epel-release-latest" ]] ; then            \
162                 MISSING+=$$(rpm -q epel-release | grep "^package") ;    \
163             else                                                        \
164                 MISSING+=$$(rpm -q $$RPM | grep "^package")        ;    \
165             fi                                                     ;    \
166         done                                                       ;    \
167         if [ -n "$$MISSING" ] ; then \
168           echo "Please install missing RPMs: \n$$MISSING\n" ; \
169           echo "by executing \"make install-dep\"\n" ; \
170           exit 1 ; \
171         fi ; \
172         exit 0
173 endif
174         @echo "SOURCE_PATH = $(WS_ROOT)"                   > $(BR)/build-config.mk
175         @echo "#!/bin/bash\n"                              > $(BR)/path_setup
176         @echo 'export PATH=$(BR)/tools/ccache-bin:$$PATH' >> $(BR)/path_setup
177         @echo 'export PATH=$(BR)/tools/bin:$$PATH'        >> $(BR)/path_setup
178         @echo 'export CCACHE_DIR=$(CCACHE_DIR)'           >> $(BR)/path_setup
179
180 ifeq ("$(wildcard /usr/bin/ccache )","")
181         @echo "WARNING: Please install ccache AYEC and re-run this script"
182 else
183         @rm -rf $(BR)/tools/ccache-bin
184         @mkdir -p $(BR)/tools/ccache-bin
185         @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/gcc
186         @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/g++
187 endif
188         @make -C $(BR) V=$(V) is_build_tool=yes tools-install
189         @touch $@
190
191 bootstrap: $(BR)/.bootstrap.ok
192
193 install-dep:
194 ifeq ($(OS_ID),ubuntu)
195 ifeq ($(OS_VERSION_ID),14.04)
196         @sudo -E apt-get $(CONFIRM) $(FORCE) install software-properties-common
197         @sudo -E add-apt-repository ppa:openjdk-r/ppa $(CONFIRM)
198 endif
199         @sudo -E apt-get update
200         @sudo -E apt-get $(CONFIRM) $(FORCE) install $(DEB_DEPENDS)
201 else ifneq ("$(wildcard /etc/redhat-release)","")
202         @sudo -E yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
203         @sudo -E yum install $(CONFIRM) $(RPM_DEPENDS)
204         @sudo -E yum install $(CONFIRM) --enablerepo=epel $(EPEL_DEPENDS)
205         @sudo -E debuginfo-install $(CONFIRM) glibc openssl-libs zlib
206 else
207         $(error "This option currently works only on Ubuntu or Centos systems")
208 endif
209
210 define make
211         @make -C $(BR) PLATFORM=$(PLATFORM) TAG=$(1) $(2)
212 endef
213
214 $(BR)/scripts/.version:
215 ifneq ("$(wildcard /etc/redhat-release)","")
216         $(shell $(BR)/scripts/version rpm-string > $(BR)/scripts/.version)
217 else
218         $(shell $(BR)/scripts/version > $(BR)/scripts/.version)
219 endif
220
221 DIST_FILE = $(BR)/vpp-$(shell src/scripts/version).tar
222 DIST_SUBDIR = vpp-$(shell src/scripts/version|cut -f1 -d-)
223
224 dist:
225         @git archive \
226           --prefix=$(DIST_SUBDIR)/ \
227           --format=tar \
228           -o $(DIST_FILE) \
229           HEAD
230         @git describe > $(BR)/.version
231         @tar --append \
232           --file $(DIST_FILE) \
233           --transform='s,.*/.version,$(DIST_SUBDIR)/src/scripts/.version,' \
234           $(BR)/.version
235         @$(RM) $(BR)/.version $(DIST_FILE).xz
236         @xz -v --threads=0 $(DIST_FILE)
237         @$(RM) $(BR)/vpp-latest.tar.xz
238         @ln -rs $(DIST_FILE).xz $(BR)/vpp-latest.tar.xz
239
240 build: $(BR)/.bootstrap.ok
241         $(call make,$(PLATFORM)_debug,vpp-install)
242
243 wipedist:
244         @$(RM) $(BR)/*.tar.xz
245
246 wipe: wipedist $(BR)/.bootstrap.ok
247         $(call make,$(PLATFORM)_debug,vpp-wipe)
248
249 rebuild: wipe build
250
251 build-release: $(BR)/.bootstrap.ok
252         $(call make,$(PLATFORM),vpp-install)
253
254 wipe-release: $(BR)/.bootstrap.ok
255         $(call make,$(PLATFORM),vpp-wipe)
256
257 rebuild-release: wipe-release build-release
258
259 export VPP_PYTHON_PREFIX=$(BR)/python
260
261 libexpand = $(subst $(subst ,, ),:,$(foreach lib,$(1),$(BR)/install-$(2)-native/vpp/$(lib)/$(3)))
262
263 define test
264         $(if $(filter-out $(3),retest),make -C $(BR) PLATFORM=$(1) TAG=$(2) vpp-install,)
265         $(eval libs:=lib lib64)
266         make -C test \
267           TEST_DIR=$(WS_ROOT)/test \
268           VPP_TEST_BUILD_DIR=$(BR)/build-$(2)-native \
269           VPP_TEST_BIN=$(BR)/install-$(2)-native/vpp/bin/vpp \
270           VPP_TEST_PLUGIN_PATH=$(call libexpand,$(libs),$(2),vpp_plugins) \
271           VPP_TEST_INSTALL_PATH=$(BR)/install-$(2)-native/ \
272           LD_LIBRARY_PATH=$(call libexpand,$(libs),$(2),) \
273           EXTENDED_TESTS=$(EXTENDED_TESTS) \
274           PYTHON=$(PYTHON) \
275           $(3)
276 endef
277
278 test: bootstrap
279         $(call test,vpp,vpp,test)
280
281 test-debug: bootstrap
282         $(call test,vpp,vpp_debug,test)
283
284 test-all: bootstrap
285         $(eval EXTENDED_TESTS=yes)
286         $(call test,vpp,vpp,test)
287
288 test-all-debug: bootstrap
289         $(eval EXTENDED_TESTS=yes)
290         $(call test,vpp,vpp_debug,test)
291
292 test-help:
293         @make -C test help
294
295 test-wipe:
296         @make -C test wipe
297
298 test-shell: bootstrap
299         $(call test,vpp,vpp,shell)
300
301 test-shell-debug: bootstrap
302         $(call test,vpp,vpp_debug,shell)
303
304 test-doc:
305         @make -C test doc
306
307 test-wipe-doc:
308         @make -C test wipe-doc
309
310 test-cov: bootstrap
311         $(eval EXTENDED_TESTS=yes)
312         $(call test,vpp,vpp_gcov,cov)
313
314 test-wipe-cov:
315         @make -C test wipe-cov
316
317 test-checkstyle:
318         @make -C test checkstyle
319
320 retest:
321         $(call test,vpp,vpp,retest)
322
323 retest-debug:
324         $(call test,vpp,vpp_debug,retest)
325
326 STARTUP_DIR ?= $(PWD)
327 ifeq ("$(wildcard $(STARTUP_CONF))","")
328 define run
329         @echo "WARNING: STARTUP_CONF not defined or file doesn't exist."
330         @echo "         Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n"
331         @cd $(STARTUP_DIR) && \
332           sudo $(2) $(1)/vpp/bin/vpp $(MINIMAL_STARTUP_CONF) plugin_path $(wildcard $(1)/vpp/lib*/vpp_plugins)
333 endef
334 else
335 define run
336         @cd $(STARTUP_DIR) && \
337           sudo $(2) $(1)/vpp/bin/vpp $(shell cat $(STARTUP_CONF) | sed -e 's/#.*//') plugin_path $(wildcard $(1)/vpp/lib*/vpp_plugins)
338 endef
339 endif
340
341 %.files: .FORCE
342         @find . \( -name '*\.[chyS]' -o -name '*\.java' -o -name '*\.lex' \) -and \
343                 \( -not -path './build-root*' -o -path \
344                 './build-root/build-vpp_debug-native/dpdk*' \) > $@
345
346 .FORCE:
347
348 run:
349         $(call run, $(BR)/install-$(PLATFORM)_debug-native)
350
351 run-release:
352         $(call run, $(BR)/install-$(PLATFORM)-native)
353
354 debug:
355         $(call run, $(BR)/install-$(PLATFORM)_debug-native,$(GDB) $(GDB_ARGS) --args)
356
357 build-coverity: 
358         $(call make,$(PLATFORM)_coverity,install-packages)
359
360 debug-release:
361         $(call run, $(BR)/install-$(PLATFORM)-native,$(GDB) $(GDB_ARGS) --args)
362
363 build-vat:
364         $(call make,$(PLATFORM)_debug,vpp-api-test-install)
365
366 run-vat:
367         @sudo $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp_api_test
368
369 pkg-deb:
370         $(call make,$(PLATFORM),install-deb)
371
372 pkg-rpm: dist
373         make -C extras/rpm
374
375 dpdk-install-dev:
376         make -C dpdk install-$(PKG)
377
378 ctags: ctags.files
379         @ctags --totals --tag-relative -L $<
380         @rm $<
381
382 gtags: ctags
383         @gtags --gtagslabel=ctags
384
385 cscope: cscope.files
386         @cscope -b -q -v
387
388 checkstyle:
389         @build-root/scripts/checkstyle.sh
390
391 fixstyle:
392         @build-root/scripts/checkstyle.sh --fix
393
394 #
395 # Build the documentation
396 #
397
398 # Doxygen configuration and our utility scripts
399 export DOXY_DIR ?= $(WS_ROOT)/doxygen
400
401 define make-doxy
402         @OS_ID="$(OS_ID)" make -C $(DOXY_DIR) $@
403 endef
404
405 .PHONY: bootstrap-doxygen doxygen wipe-doxygen
406
407 bootstrap-doxygen:
408         $(call make-doxy)
409
410 doxygen:
411         $(call make-doxy)
412
413 wipe-doxygen:
414         $(call make-doxy)
415
416 define banner
417         @echo "========================================================================"
418         @echo " $(1)"
419         @echo "========================================================================"
420         @echo " "
421 endef
422
423 verify: install-dep $(BR)/.bootstrap.ok dpdk-install-dev
424         $(call banner,"Building for PLATFORM=vpp using gcc")
425         @make -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages
426 ifeq ($(OS_ID)-$(OS_VERSION_ID),ubuntu-16.04)
427         $(call banner,"Installing dependencies")
428         @sudo -E apt-get update
429         @sudo -E apt-get $(CONFIRM) $(FORCE) install clang
430         $(call banner,"Building for PLATFORM=vpp using clang")
431         @make -C build-root CC=clang PLATFORM=vpp TAG=vpp_clang wipe-all install-packages
432 endif
433         $(call banner,"Building sample-plugin")
434         @make -C build-root PLATFORM=vpp TAG=vpp sample-plugin-install
435         $(call banner,"Building $(PKG) packages")
436         @make pkg-$(PKG)
437 ifeq ($(OS_ID)-$(OS_VERSION_ID),ubuntu-16.04)
438         @make test
439 endif
440
441