VPP-363: add ability to change mac address of the interface
[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 # 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 DEB_DEPENDS  = curl build-essential autoconf automake bison libssl-dev ccache
34 DEB_DEPENDS += debhelper dkms git libtool libganglia1-dev libapr1-dev dh-systemd
35 DEB_DEPENDS += libconfuse-dev git-review exuberant-ctags cscope
36 DEB_DEPENDS += python-dev
37 ifeq ($(OS_VERSION_ID),14.04)
38         DEB_DEPENDS += openjdk-8-jdk-headless
39 else
40         DEB_DEPENDS += default-jdk-headless
41 endif
42
43 RPM_DEPENDS_GROUPS = 'Development Tools'
44 RPM_DEPENDS  = redhat-lsb glibc-static java-1.8.0-openjdk-devel yum-utils
45 RPM_DEPENDS += openssl-devel https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm apr-devel
46 RPM_DEPENDS += python-devel
47 EPEL_DEPENDS = libconfuse-devel ganglia-devel
48
49 ifneq ($(wildcard $(STARTUP_DIR)/startup.conf),)
50         STARTUP_CONF ?= $(STARTUP_DIR)/startup.conf
51 endif
52
53 ifeq ($(findstring y,$(UNATTENDED)),y)
54 CONFIRM=-y
55 FORCE=--force-yes
56 endif
57
58 .PHONY: help bootstrap wipe wipe-release build build-release rebuild rebuild-release
59 .PHONY: run run-release debug debug-release build-vat run-vat pkg-deb pkg-rpm
60 .PHONY: ctags cscope plugins plugins-release build-vpp-api
61
62 help:
63         @echo "Make Targets:"
64         @echo " bootstrap           - prepare tree for build"
65         @echo " install-dep         - install software dependencies"
66         @echo " wipe                - wipe all products of debug build "
67         @echo " wipe-release        - wipe all products of release build "
68         @echo " build               - build debug binaries"
69         @echo " build-release       - build release binaries"
70         @echo " plugins             - build debug plugin binaries"
71         @echo " plugins-release     - build release plugin binaries"
72         @echo " rebuild             - wipe and build debug binares"
73         @echo " rebuild-release     - wipe and build release binares"
74         @echo " run                 - run debug binary"
75         @echo " run-release         - run release binary"
76         @echo " debug               - run debug binary with debugger"
77         @echo " debug-release       - run release binary with debugger"
78         @echo " build-vat           - build vpp-api-test tool"
79         @echo " build-vpp-api       - build vpp-api"
80         @echo " run-vat             - run vpp-api-test tool"
81         @echo " pkg-deb             - build DEB packages"
82         @echo " pkg-rpm             - build RPM packages"
83         @echo " ctags               - (re)generate ctags database"
84         @echo " gtags               - (re)generate gtags database"
85         @echo " cscope              - (re)generate cscope database"
86         @echo " checkstyle          - check coding style"
87         @echo " fixstyle            - fix coding style"
88         @echo " doxygen             - (re)generate documentation"
89         @echo " bootstrap-doxygen   - setup Doxygen dependencies"
90         @echo " wipe-doxygen        - wipe all generated documentation"
91         @echo ""
92         @echo "Make Arguments:"
93         @echo " V=[0|1]             - set build verbosity level"
94         @echo " STARTUP_CONF=<path> - startup configuration file"
95         @echo "                       (e.g. /etc/vpp/startup.conf)"
96         @echo " STARTUP_DIR=<path>  - startup drectory (e.g. /etc/vpp)"
97         @echo "                       It also sets STARTUP_CONF if"
98         @echo "                       startup.conf file is present"
99         @echo " GDB=<path>          - gdb binary to use for debugging"
100         @echo " PLATFORM=<name>     - target platform. default is vpp"
101         @echo ""
102         @echo "Current Argumernt Values:"
103         @echo " V            = $(V)"
104         @echo " STARTUP_CONF = $(STARTUP_CONF)"
105         @echo " STARTUP_DIR  = $(STARTUP_DIR)"
106         @echo " GDB          = $(GDB)"
107         @echo " PLATFORM     = $(PLATFORM)"
108         @echo " DPDK_VERSION = $(DPDK_VERSION)"
109
110 $(BR)/.bootstrap.ok:
111 ifeq ($(OS_ID),ubuntu)
112         @MISSING=$$(apt-get install -y -qq -s $(DEB_DEPENDS) | grep "^Inst ") ; \
113         if [ -n "$$MISSING" ] ; then \
114           echo "\nPlease install missing packages: \n$$MISSING\n" ; \
115           echo "by executing \"make install-dep\"\n" ; \
116           exit 1 ; \
117         fi ; \
118         exit 0
119 endif
120         @echo "SOURCE_PATH = $(WS_ROOT)"                   > $(BR)/build-config.mk
121         @echo "#!/bin/bash\n"                              > $(BR)/path_setup
122         @echo 'export PATH=$(BR)/tools/ccache-bin:$$PATH' >> $(BR)/path_setup
123         @echo 'export PATH=$(BR)/tools/bin:$$PATH'        >> $(BR)/path_setup
124         @echo 'export CCACHE_DIR=$(CCACHE_DIR)'           >> $(BR)/path_setup
125
126 ifeq ("$(wildcard /usr/bin/ccache )","")
127         @echo "WARNING: Please install ccache AYEC and re-run this script"
128 else
129         @rm -rf $(BR)/tools/ccache-bin
130         @mkdir -p $(BR)/tools/ccache-bin
131         @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/gcc
132         @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/g++
133 endif
134         @make -C $(BR) V=$(V) is_build_tool=yes vppapigen-install
135         @touch $@
136
137 bootstrap: $(BR)/.bootstrap.ok
138
139 install-dep:
140 ifeq ($(OS_ID),ubuntu)
141 ifeq ($(OS_VERSION_ID),14.04)
142         @sudo -E apt-get $(CONFIRM) $(FORCE) install software-properties-common
143         @sudo -E add-apt-repository ppa:openjdk-r/ppa $(CONFIRM)
144         @sudo -E apt-get update
145 endif
146         @sudo -E apt-get $(CONFIRM) $(FORCE) install $(DEB_DEPENDS)
147 else ifneq ("$(wildcard /etc/redhat-release)","")
148         @sudo yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
149         @sudo yum install $(CONFIRM) $(RPM_DEPENDS)
150         @sudo yum install $(CONFIRM) --enablerepo=epel $(EPEL_DEPENDS)
151         @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
152 else
153         $(error "This option currently works only on Ubuntu or Centos systems")
154 endif
155
156 define make
157         @make -C $(BR) PLATFORM=$(PLATFORM) TAG=$(1) $(2)
158 endef
159
160 build: $(BR)/.bootstrap.ok
161         $(call make,$(PLATFORM)_debug,vpp-install)
162
163 wipe: $(BR)/.bootstrap.ok
164         $(call make,$(PLATFORM)_debug,vpp-wipe)
165
166 rebuild: wipe build
167
168 build-release: $(BR)/.bootstrap.ok
169         $(call make,$(PLATFORM),vpp-install)
170
171 wipe-release: $(BR)/.bootstrap.ok
172         $(call make,$(PLATFORM),vpp-wipe)
173
174 rebuild-release: wipe-release build-release
175
176 plugins: $(BR)/.bootstrap.ok
177         $(call make,$(PLATFORM)_debug,plugins-install)
178
179 plugins-release: $(BR)/.bootstrap.ok
180         $(call make,$(PLATFORM),plugins-install)
181
182 build-vpp-api: $(BR)/.bootstrap.ok
183         $(call make,$(PLATFORM)_debug,vpp-api-install)
184
185 STARTUP_DIR ?= $(PWD)
186 ifeq ("$(wildcard $(STARTUP_CONF))","")
187 define run
188         @echo "WARNING: STARTUP_CONF not defined or file doesn't exist."
189         @echo "         Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n"
190         @cd $(STARTUP_DIR) && \
191           sudo $(2) $(1)/vpp/bin/vpp $(MINIMAL_STARTUP_CONF) plugin_path $(1)/plugins/lib64/vpp_plugins
192 endef
193 else
194 define run
195         @cd $(STARTUP_DIR) && \
196           sudo $(2) $(1)/vpp/bin/vpp $(shell cat $(STARTUP_CONF) | sed -e 's/#.*//') plugin_path $(1)/plugins/lib64/vpp_plugins
197 endef
198 endif
199
200 %.files: .FORCE
201         @find . \( -name '*\.[chyS]' -o -name '*\.java' -o -name '*\.lex' \) -and \
202                 \( -not -path './build-root*' -o -path \
203                 './build-root/build-vpp_debug-native/dpdk*' \) > $@
204
205 .FORCE:
206
207 run:
208         $(call run, $(BR)/install-$(PLATFORM)_debug-native)
209
210 run-release:
211         $(call run, $(BR)/install-$(PLATFORM)-native)
212
213 debug:
214         $(call run, $(BR)/install-$(PLATFORM)_debug-native,$(GDB) $(GDB_ARGS) --args)
215
216 debug-release:
217         $(call run, $(BR)/install-$(PLATFORM)-native,$(GDB) $(GDB_ARGS) --args)
218
219 build-vat:
220         $(call make,$(PLATFORM)_debug,vpp-api-test-install)
221
222 run-vat:
223         @sudo $(BR)/install-$(PLATFORM)_debug-native/vpp-api-test/bin/vpp_api_test
224
225 pkg-deb:
226         $(call make,$(PLATFORM),install-deb)
227
228 pkg-rpm:
229         $(call make,$(PLATFORM),install-rpm)
230
231 ctags: ctags.files
232         @ctags --totals --tag-relative -L $<
233         @rm $<
234
235 gtags: ctags
236         @gtags --gtagslabel=ctags
237
238 cscope: cscope.files
239         @cscope -b -q -v
240
241 checkstyle:
242         @build-root/scripts/checkstyle.sh
243
244 fixstyle:
245         @build-root/scripts/checkstyle.sh --fix
246
247 #
248 # Build the documentation
249 #
250
251 # Doxygen configuration and our utility scripts
252 export DOXY_DIR ?= $(WS_ROOT)/doxygen
253
254 define make-doxy
255         @OS_ID="$(OS_ID)" WS_ROOT="$(WS_ROOT)" BR="$(BR)" make -C $(DOXY_DIR) $@
256 endef
257
258 .PHONY: bootstrap-doxygen doxygen wipe-doxygen
259
260 bootstrap-doxygen:
261         $(call make-doxy)
262
263 doxygen:
264         $(call make-doxy)
265
266 wipe-doxygen:
267         $(call make-doxy)
268