blob: 641707ed122d7930cdc56d98fa1aba9acdffd1b2 [file] [log] [blame]
Damjan Marion7cd468a2016-12-19 23:05:39 +01001# 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###############################################################################
15# Global Defines
16###############################################################################
17
18AUTOMAKE_OPTIONS = foreign subdir-objects
19ACLOCAL_AMFLAGS = -I m4
Damjan Marion724f64c2017-01-11 11:11:00 +010020AM_LIBTOOLFLAGS = --quiet
Damjan Marion7cd468a2016-12-19 23:05:39 +010021
22AM_CFLAGS = -Wall
23
24SUBDIRS = .
25SUFFIXES = .api.h .api .api.json
26API_FILES =
27noinst_HEADERS =
28dist_bin_SCRIPTS =
29lib_LTLIBRARIES =
30BUILT_SOURCES =
Burt Silverman006eb472017-01-27 15:29:54 -050031CLEANFILES =
Padraig Connolly69915cb2017-01-10 17:10:39 +000032install-data-local:
33 @echo "Building vppctl command list..."
34 @DIR_SEARCH="$(srcdir)" ; \
35 DIR_EXCLUDE="examples" ; \
36 GREP_TIME=`time (grep -wIr "\.path = " $$DIR_SEARCH --exclude-dir=$$DIR_EXCLUDE \
37 | cut -d '"' -f2 | sort -u > $(srcdir)/scripts/vppctl-cmd-list) 2>&1` ; \
38 GREP_TIME=`echo $$GREP_TIME | awk '{print $$2}'` ; \
39 echo "Command list built, Time taken: $$GREP_TIME"
Damjan Marion7cd468a2016-12-19 23:05:39 +010040
41###############################################################################
42# DPDK
43###############################################################################
44
45if WITH_DPDK
46if ENABLE_DPDK_SHARED
47DPDK_LD_FLAGS = -Wl,--whole-archive,-ldpdk,--no-whole-archive
48else
Damjan Marionc74a86a2017-01-16 14:00:03 +010049DPDK_LD_FLAGS = -Wl,--whole-archive,-l:libdpdk.a,--no-whole-archive,-lm,-ldl
Damjan Marion7cd468a2016-12-19 23:05:39 +010050endif
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +000051if WITH_DPDK_CRYPTO_SW
Radu Nicolau2e3677b2017-02-20 12:27:02 +000052DPDK_LD_ADD = -lIPSec_MB -lisal_crypto
Damjan Marion7cd468a2016-12-19 23:05:39 +010053endif
54if WITH_DPDK_MLX5_PMD
55DPDK_LD_FLAGS += -libverbs -lmlx5 -lnuma
56endif
57else
58DPDK_LD_FLAGS =
59DPDK_LD_ADD =
60endif
61
62###############################################################################
63# Components
64###############################################################################
65
66include vppinfra.am
67include vppapigen.am
68
69if ENABLE_PERFTOOL
70include perftool.am
71endif
72
73if ENABLE_G2
74include g2.am
75endif
76
77if ENABLE_SVM
78include svm.am
79endif
80
81if ENABLE_VLIB
82include vlib.am
83endif
84
85if ENABLE_SVM
86if ENABLE_VLIB
87include vlib-api.am
88include vnet.am
89include vpp.am
90include vpp-api-test.am
Dave Barach68b0fb02017-02-28 15:15:56 -050091include uri.am
Damjan Marion7cd468a2016-12-19 23:05:39 +010092
Damjan Marioncb034b92016-12-28 18:38:59 +010093SUBDIRS += plugins
94
95if ENABLE_PAPI
96SUBDIRS += vpp-api/python
97endif
98
99if ENABLE_JAPI
100SUBDIRS += vpp-api/java
101endif
Damjan Marion7cd468a2016-12-19 23:05:39 +0100102
103###############################################################################
104# API
105###############################################################################
106
107include suffix-rules.mk
108
109# Set the suffix list
110apidir = $(prefix)/share/vpp/api/core
111
112api_DATA = \
113 $(patsubst %.api,%.api.json,$(API_FILES))
114
115BUILT_SOURCES += \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100116 $(patsubst %.api,%.api.h,$(API_FILES))
117
118endif # if ENABLE_VLIB
119endif # if ENABLE_SVM
Burt Silverman006eb472017-01-27 15:29:54 -0500120
121CLEANFILES += $(BUILT_SOURCES) $(api_DATA)