VPP-65: Fix top-level "make install-dep" to work behind a firewall /
[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 += doxygen graphviz
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 += doxygen graphviz
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 endif
53
54 .PHONY: help bootstrap wipe wipe-release build build-release rebuild rebuild-release
55 .PHONY: run run-release debug debug-release build-vat run-vat pkg-deb pkg-rpm
56 .PHONY: ctags cscope doxygen wipe-doxygen
57
58 help:
59         @echo "Make Targets:"
60         @echo " bootstrap           - prepare tree for build"
61         @echo " install-dep         - install software dependencies"
62         @echo " wipe                - wipe all products of debug build "
63         @echo " wipe-release        - wipe all products of release build "
64         @echo " build               - build debug binaries"
65         @echo " build-release       - build release binaries"
66         @echo " rebuild             - wipe and build debug binares"
67         @echo " rebuild-release     - wipe and build release binares"
68         @echo " run                 - run debug binary"
69         @echo " run-release         - run release binary"
70         @echo " debug               - run debug binary with debugger"
71         @echo " debug-release       - run release binary with debugger"
72         @echo " build-vat           - build vpp-api-test tool"
73         @echo " run-vat             - run vpp-api-test tool"
74         @echo " pkg-deb             - build DEB packages"
75         @echo " pkg-rpm             - build RPM packages"
76         @echo " ctags               - (re)generate ctags database"
77         @echo " cscope              - (re)generate cscope database"
78         @echo " doxygen             - (re)generate documentation"
79         @echo " wipe-doxygen        - wipe all generated documentation"
80         @echo ""
81         @echo "Make Arguments:"
82         @echo " V=[0|1]             - set build verbosity level"
83         @echo " STARTUP_CONF=<path> - startup configuration file"
84         @echo "                       (e.g. /etc/vpp/startup.conf)"
85         @echo " STARTUP_DIR=<path>  - startup drectory (e.g. /etc/vpp)"
86         @echo "                       It also sets STARTUP_CONF if"
87         @echo "                       startup.conf file is present"
88         @echo " GDB=<path>          - gdb binary to use for debugging"
89         @echo " PLATFORM=<name>     - target platform. default is vpp"
90         @echo ""
91         @echo "Current Argumernt Values:"
92         @echo " V            = $(V)"
93         @echo " STARTUP_CONF = $(STARTUP_CONF)"
94         @echo " STARTUP_DIR  = $(STARTUP_DIR)"
95         @echo " GDB          = $(GDB)"
96         @echo " PLATFORM     = $(PLATFORM)"
97         @echo " DPDK_VERSION = $(DPDK_VERSION)"
98
99 $(BR)/.bootstrap.ok:
100 ifeq ($(OS_ID),ubuntu)
101         @MISSING=$$(apt-get install -y -qq -s $(DEB_DEPENDS) | grep "^Inst ") ; \
102         if [ -n "$$MISSING" ] ; then \
103           echo "\nPlease install missing packages: \n$$MISSING\n" ; \
104           echo "by executing \"make install-dep\"\n" ; \
105           exit 1 ; \
106         fi ; \
107         exit 0
108 endif
109         @echo "SOURCE_PATH = $(WS_ROOT)"                   > $(BR)/build-config.mk
110         @echo "#!/bin/bash\n"                              > $(BR)/path_setup
111         @echo 'export PATH=$(BR)/tools/ccache-bin:$$PATH' >> $(BR)/path_setup
112         @echo 'export PATH=$(BR)/tools/bin:$$PATH'        >> $(BR)/path_setup
113         @echo 'export CCACHE_DIR=$(CCACHE_DIR)'           >> $(BR)/path_setup
114
115 ifeq ("$(wildcard /usr/bin/ccache )","")
116         @echo "WARNING: Please install ccache AYEC and re-run this script"
117 else
118         @rm -rf $(BR)/tools/ccache-bin
119         @mkdir -p $(BR)/tools/ccache-bin
120         @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/gcc
121         @ln -s /usr/bin/ccache $(BR)/tools/ccache-bin/g++
122 endif
123         @make -C $(BR) V=$(V) is_build_tool=yes vppapigen-install
124         @touch $@
125
126 bootstrap: $(BR)/.bootstrap.ok
127
128 install-dep:
129 ifeq ($(OS_ID),ubuntu)
130 ifeq ($(OS_VERSION_ID),14.04)
131         @sudo -E apt-get $(CONFIRM) install software-properties-common
132         @sudo -E add-apt-repository $(CONFIRM) ppa:openjdk-r/ppa
133         @sudo -E apt-get update
134 endif
135         @sudo -E apt-get $(CONFIRM) install $(DEB_DEPENDS)
136 else ifneq ("$(wildcard /etc/redhat-release)","")
137         @sudo yum groupinstall $(CONFIRM) $(RPM_DEPENDS_GROUPS)
138         @sudo yum install $(CONFIRM) $(RPM_DEPENDS)
139         @sudo yum install $(CONFIRM) --enablerepo=epel $(EPEL_DEPENDS)
140         @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
141 else
142         $(error "This option currently works only on Ubuntu or Centos systems")
143 endif
144
145 define make
146         @make -C $(BR) PLATFORM=$(PLATFORM) TAG=$(1) $(2)
147 endef
148
149 build: $(BR)/.bootstrap.ok
150         $(call make,$(PLATFORM)_debug,vpp-install)
151
152 wipe: $(BR)/.bootstrap.ok
153         $(call make,$(PLATFORM)_debug,vpp-wipe)
154
155 rebuild: wipe build
156
157 build-release: $(BR)/.bootstrap.ok
158         $(call make,$(PLATFORM),vpp-install)
159
160 wipe-release: $(BR)/.bootstrap.ok
161         $(call make,$(PLATFORM),vpp-wipe)
162
163 rebuild-release: wipe-release build-release
164
165 STARTUP_DIR ?= $(PWD)
166 ifeq ("$(wildcard $(STARTUP_CONF))","")
167 define run
168         @echo "WARNING: STARTUP_CONF not defined or file doesn't exist."
169         @echo "         Running with minimal startup config: $(MINIMAL_STARTUP_CONF)\n"
170         @cd $(STARTUP_DIR) && sudo $(1) $(MINIMAL_STARTUP_CONF)
171 endef
172 else
173 define run
174         @cd $(STARTUP_DIR) && sudo $(1) -c $(STARTUP_CONF)
175 endef
176 endif
177
178 %.files: .FORCE
179         @find . \( -name '*\.[chyS]' -o -name '*\.java' -o -name '*\.lex' \) -and \
180                 \( -not -path './build-root*' -o -path \
181                 './build-root/build-vpp_debug-native/dpdk*' \) > $@
182
183 .FORCE:
184
185 run:
186         $(call run, $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp)
187
188 run-release:
189         $(call run, $(BR)/install-$(PLATFORM)-native/vpp/bin/vpp)
190
191 debug:
192         $(call run, $(GDB) $(GDB_ARGS) --args $(BR)/install-$(PLATFORM)_debug-native/vpp/bin/vpp)
193
194 debug-release:
195         $(call run, $(GDB) $(GDB_ARGS) --args $(BR)/install-$(PLATFORM)-native/vpp/bin/vpp)
196
197 build-vat:
198         $(call make,$(PLATFORM)_debug,vpp-api-test-install)
199
200 run-vat:
201         @sudo $(BR)/install-$(PLATFORM)_debug-native/vpp-api-test/bin/vpp_api_test
202
203 pkg-deb:
204         $(call make,$(PLATFORM),install-deb)
205
206 pkg-rpm:
207         $(call make,$(PLATFORM),install-rpm)
208
209 ctags: ctags.files
210         @ctags --totals --tag-relative -L $<
211         @rm $<
212
213 cscope: cscope.files
214         @cscope -b -q -v
215
216
217 #
218 # Build the documentation
219 #
220
221 DOXY_INPUT = \
222         README.md \
223         vppinfra \
224         svm \
225         vlib \
226         vlib-api \
227         vnet \
228         vpp \
229         vpp-api
230
231 doxygen:
232         @mkdir -p "$(BR)/docs"
233         ROOT="$(WS_ROOT)" \
234              BUILD_ROOT="$(BR)" \
235              INPUT="$(addprefix $(WS_ROOT)/,$(DOXY_INPUT))" \
236              HTML=YES \
237              VERSION="`git describe --tags --dirty`" \
238              doxygen doxygen/doxygen.cfg
239
240 wipe-doxygen:
241         rm -rf "$(BR)/docs"