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