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