Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 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 |
Damjan Marion | 724f64c | 2017-01-11 11:11:00 +0100 | [diff] [blame] | 20 | AM_LIBTOOLFLAGS = --quiet |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 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 = |
Burt Silverman | 006eb47 | 2017-01-27 15:29:54 -0500 | [diff] [blame] | 31 | CLEANFILES = |
Padraig Connolly | 69915cb | 2017-01-10 17:10:39 +0000 | [diff] [blame] | 32 | install-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 Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 40 | |
| 41 | ############################################################################### |
| 42 | # DPDK |
| 43 | ############################################################################### |
| 44 | |
| 45 | if WITH_DPDK |
| 46 | if ENABLE_DPDK_SHARED |
| 47 | DPDK_LD_FLAGS = -Wl,--whole-archive,-ldpdk,--no-whole-archive |
| 48 | else |
Damjan Marion | c74a86a | 2017-01-16 14:00:03 +0100 | [diff] [blame] | 49 | DPDK_LD_FLAGS = -Wl,--whole-archive,-l:libdpdk.a,--no-whole-archive,-lm,-ldl |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 50 | endif |
Sergio Gonzalez Monroy | d04b60b | 2017-01-20 15:35:23 +0000 | [diff] [blame] | 51 | if WITH_DPDK_CRYPTO_SW |
Radu Nicolau | 2e3677b | 2017-02-20 12:27:02 +0000 | [diff] [blame] | 52 | DPDK_LD_ADD = -lIPSec_MB -lisal_crypto |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 53 | endif |
| 54 | if WITH_DPDK_MLX5_PMD |
| 55 | DPDK_LD_FLAGS += -libverbs -lmlx5 -lnuma |
| 56 | endif |
| 57 | else |
| 58 | DPDK_LD_FLAGS = |
| 59 | DPDK_LD_ADD = |
| 60 | endif |
| 61 | |
| 62 | ############################################################################### |
| 63 | # Components |
| 64 | ############################################################################### |
| 65 | |
| 66 | include vppinfra.am |
| 67 | include vppapigen.am |
| 68 | |
| 69 | if ENABLE_PERFTOOL |
| 70 | include perftool.am |
| 71 | endif |
| 72 | |
| 73 | if ENABLE_G2 |
| 74 | include g2.am |
| 75 | endif |
| 76 | |
| 77 | if ENABLE_SVM |
| 78 | include svm.am |
| 79 | endif |
| 80 | |
| 81 | if ENABLE_VLIB |
| 82 | include vlib.am |
| 83 | endif |
| 84 | |
| 85 | if ENABLE_SVM |
| 86 | if ENABLE_VLIB |
| 87 | include vlib-api.am |
| 88 | include vnet.am |
| 89 | include vpp.am |
| 90 | include vpp-api-test.am |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame^] | 91 | include uri.am |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 92 | |
Damjan Marion | cb034b9 | 2016-12-28 18:38:59 +0100 | [diff] [blame] | 93 | SUBDIRS += plugins |
| 94 | |
| 95 | if ENABLE_PAPI |
| 96 | SUBDIRS += vpp-api/python |
| 97 | endif |
| 98 | |
| 99 | if ENABLE_JAPI |
| 100 | SUBDIRS += vpp-api/java |
| 101 | endif |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 102 | |
| 103 | ############################################################################### |
| 104 | # API |
| 105 | ############################################################################### |
| 106 | |
| 107 | include suffix-rules.mk |
| 108 | |
| 109 | # Set the suffix list |
| 110 | apidir = $(prefix)/share/vpp/api/core |
| 111 | |
| 112 | api_DATA = \ |
| 113 | $(patsubst %.api,%.api.json,$(API_FILES)) |
| 114 | |
| 115 | BUILT_SOURCES += \ |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 116 | $(patsubst %.api,%.api.h,$(API_FILES)) |
| 117 | |
| 118 | endif # if ENABLE_VLIB |
| 119 | endif # if ENABLE_SVM |
Burt Silverman | 006eb47 | 2017-01-27 15:29:54 -0500 | [diff] [blame] | 120 | |
| 121 | CLEANFILES += $(BUILT_SOURCES) $(api_DATA) |