dpdk: rework cryptodev ipsec build and setup
[vpp.git] / src / Makefile.am
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 ###############################################################################
15 # Global Defines
16 ###############################################################################
17
18 AUTOMAKE_OPTIONS = foreign subdir-objects
19 ACLOCAL_AMFLAGS = -I m4
20 AM_LIBTOOLFLAGS = --quiet
21
22 AM_CFLAGS = -Wall
23
24 SUBDIRS = .
25 SUFFIXES = .api.h .api .api.json
26 API_FILES =
27 noinst_HEADERS =
28 dist_bin_SCRIPTS =
29 lib_LTLIBRARIES =
30 BUILT_SOURCES =
31 install-data-local:
32         @echo "Building vppctl command list..."
33         @DIR_SEARCH="$(srcdir)" ; \
34         DIR_EXCLUDE="examples" ; \
35         GREP_TIME=`time (grep -wIr "\.path = " $$DIR_SEARCH --exclude-dir=$$DIR_EXCLUDE \
36         | cut -d '"' -f2 | sort -u > $(srcdir)/scripts/vppctl-cmd-list) 2>&1` ; \
37         GREP_TIME=`echo $$GREP_TIME | awk '{print $$2}'` ; \
38         echo "Command list built, Time taken: $$GREP_TIME"
39
40 ###############################################################################
41 # DPDK
42 ###############################################################################
43
44 if WITH_DPDK
45 if ENABLE_DPDK_SHARED
46 DPDK_LD_FLAGS = -Wl,--whole-archive,-ldpdk,--no-whole-archive
47 else
48 DPDK_LD_FLAGS = -Wl,--whole-archive,-l:libdpdk.a,--no-whole-archive,-lm,-ldl
49 endif
50 if WITH_DPDK_CRYPTO_SW
51 DPDK_LD_ADD = -L$(AESNI_MULTI_BUFFER_LIB_PATH) -lIPSec_MB
52 endif
53 if WITH_DPDK_MLX5_PMD
54 DPDK_LD_FLAGS += -libverbs -lmlx5 -lnuma
55 endif
56 else
57 DPDK_LD_FLAGS =
58 DPDK_LD_ADD =
59 endif
60
61 ###############################################################################
62 # Components
63 ###############################################################################
64
65 include vppinfra.am
66 include vppapigen.am
67
68 if ENABLE_PERFTOOL
69 include perftool.am
70 endif
71
72 if ENABLE_G2
73 include g2.am
74 endif
75
76 if ENABLE_SVM
77 include svm.am
78 endif
79
80 if ENABLE_VLIB
81 include vlib.am
82 endif
83
84 if ENABLE_SVM
85 if ENABLE_VLIB
86 include vlib-api.am
87 include vnet.am
88 include vpp.am
89 include vpp-api-test.am
90
91 SUBDIRS += plugins
92
93 if ENABLE_PAPI
94 SUBDIRS += vpp-api/python
95 endif
96
97 if ENABLE_JAPI
98 SUBDIRS += vpp-api/java
99 endif
100
101 ###############################################################################
102 # API
103 ###############################################################################
104
105 include suffix-rules.mk
106
107 # Set the suffix list
108 apidir = $(prefix)/share/vpp/api/core
109
110 api_DATA = \
111         $(patsubst %.api,%.api.json,$(API_FILES))
112
113 BUILT_SOURCES += \
114         $(patsubst %.api,%.api.h,$(API_FILES))
115
116 endif # if ENABLE_VLIB
117 endif # if ENABLE_SVM