blob: 10a4e311252760074c96e270d8e57d4d061ea7a8 [file] [log] [blame]
Damjan Marion7cd468a2016-12-19 23:05:39 +01001# Copyright (c) 2015 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
14bin_PROGRAMS += bin/vpp
15
16bin_vpp_SOURCES = \
17 vpp/vnet/main.c \
18 vpp/app/vpe_cli.c \
19 vpp/app/version.c \
20 vpp/oam/oam.c \
21 vpp/stats/stats.c
22
23bin_vpp_SOURCES += \
24 vpp/api/api.c \
25 vpp/api/custom_dump.c \
26 vpp/api/json_format.c
27
28if WITH_APICLI
29 bin_vpp_SOURCES += \
30 vpp/api/api_format.c \
Dave Barachfe6bdfd2017-01-20 19:50:09 -050031 vpp/api/api_main.c \
32 vpp/api/plugin.c \
33 vpp/api/plugin.h
Damjan Marion7cd468a2016-12-19 23:05:39 +010034endif
35
Dave Wallaced756b352017-07-03 13:11:38 -040036# uncomment to enable stats upload to gmond
37# bin_vpp_SOURCES += \
38# vpp/api/gmon.c
Damjan Marion7cd468a2016-12-19 23:05:39 +010039
40bin_vpp_CFLAGS = @APICLI@
Damjan Marion7cd468a2016-12-19 23:05:39 +010041
42nobase_include_HEADERS += \
43 vpp/api/vpe_all_api_h.h \
44 vpp/api/vpe_msg_enum.h \
45 vpp/api/vpe.api.h
46
47API_FILES += vpp/api/vpe.api
48
Damjan Marion45a00c42017-01-08 15:34:50 +010049BUILT_SOURCES += .version
Damjan Marion7cd468a2016-12-19 23:05:39 +010050
51vpp/app/version.o: vpp/app/version.h
52
Damjan Marion45a00c42017-01-08 15:34:50 +010053.PHONY: .version
Damjan Marion7cd468a2016-12-19 23:05:39 +010054
Damjan Marion45a00c42017-01-08 15:34:50 +010055VPP_VERSION = $(shell $(srcdir)/scripts/version)
56
Marco Varlesedf82ec82017-05-03 17:37:46 +020057VPP_BUILD_DATE ?= $$(date)
58VPP_BUILD_USER ?= $$(whoami)
59VPP_BUILD_HOST ?= $$(hostname)
60
Damjan Marion45a00c42017-01-08 15:34:50 +010061# update version.h only when version changes, to avoid
62# unnecessary re-linking of vpp binary
63
64.version:
65 @if [ "$$(cat .version 2> /dev/null)" != "$(VPP_VERSION)" ] ; then \
66 f="vpp/app/version.h" ;\
67 echo " VERSION $$f ($(VPP_VERSION))" ;\
68 echo $(VPP_VERSION) > .version ;\
Marco Varlesedf82ec82017-05-03 17:37:46 +020069 echo "#define VPP_BUILD_DATE \"$(VPP_BUILD_DATE)\"" > $$f ;\
70 echo "#define VPP_BUILD_USER \"$(VPP_BUILD_USER)\"" >> $$f ;\
71 echo "#define VPP_BUILD_HOST \"$(VPP_BUILD_HOST)\"" >> $$f ;\
Damjan Marion45a00c42017-01-08 15:34:50 +010072 echo -n "#define VPP_BUILD_TOPDIR " >> $$f ;\
73 echo "\"$$(cd $(srcdir) && git rev-parse --show-toplevel)\"" >> $$f ;\
74 echo "#define VPP_BUILD_VER \"$(VPP_VERSION)\"" >> $$f ;\
75 fi
76
Damjan Marion7cd468a2016-12-19 23:05:39 +010077bin_vpp_LDADD = \
Damjan Marion7cd468a2016-12-19 23:05:39 +010078 libvlibmemory.la \
Damjan Marion7cd468a2016-12-19 23:05:39 +010079 libvlib.la \
80 libvnet.la \
81 libsvm.la \
82 libsvmdb.la \
Damjan Marionc74a86a2017-01-16 14:00:03 +010083 libvppinfra.la \
84 -lrt -lm -lpthread -ldl
Damjan Marion7cd468a2016-12-19 23:05:39 +010085
Dave Barachfe6bdfd2017-01-20 19:50:09 -050086bin_vpp_LDFLAGS = -Wl,--export-dynamic
87
Damjan Marionaad20982017-06-20 16:35:29 +020088bin_PROGRAMS += bin/vppctl
89bin_vppctl_SOURCES = vpp/app/vppctl.c
90bin_vppctl_LDADD = libvppinfra.la
91
Damjan Marion724f64c2017-01-11 11:11:00 +010092if ENABLE_TESTS
Damjan Marion7cd468a2016-12-19 23:05:39 +010093noinst_PROGRAMS += bin/test_client
94
95bin_test_client_SOURCES = \
96 vpp/api/test_client.c
97
98bin_test_client_LDADD = \
99 libvlibmemoryclient.la \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100100 libsvm.la \
101 libvppinfra.la \
102 -lpthread -lm -lrt
103
104noinst_PROGRAMS += bin/test_client bin/test_ha
105
106bin_test_ha_SOURCES = \
107 vpp/api/test_ha.c
108
109bin_test_ha_LDADD = \
110 libvlibmemoryclient.la \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100111 libsvm.la \
112 libvppinfra.la \
113 -lpthread -lm -lrt
Damjan Marion724f64c2017-01-11 11:11:00 +0100114endif
Damjan Marion7cd468a2016-12-19 23:05:39 +0100115
116noinst_PROGRAMS += bin/summary_stats_client
117
118bin_summary_stats_client_SOURCES = \
119 vpp/api/summary_stats_client.c
120
121bin_summary_stats_client_LDADD = \
122 libvlibmemoryclient.la \
Damjan Marion7cd468a2016-12-19 23:05:39 +0100123 libsvm.la \
124 libvppinfra.la \
125 -lpthread -lm -lrt
126
127bin_PROGRAMS += bin/vpp_get_metrics
128
129bin_vpp_get_metrics_SOURCES = \
130 vpp/api/vpp_get_metrics.c
131
132bin_vpp_get_metrics_LDADD = \
133 libsvmdb.la \
134 libsvm.la \
135 libvppinfra.la \
136 -lpthread -lm -lrt
137
Burt Silverman006eb472017-01-27 15:29:54 -0500138CLEANFILES += vpp/app/version.h
139
Damjan Marion7cd468a2016-12-19 23:05:39 +0100140# vi:syntax=automake