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