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