blob: 642cb351588f033b743979b14193c81148144293 [file] [log] [blame]
Dave Wallace5c7cf1c2017-10-24 04:12:18 -04001# Copyright (c) 2017 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
14lib_LTLIBRARIES += libvppcom.la libvcl_ldpreload.la
15
16libvppcom_la_SOURCES =
17libvcl_ldpreload_la_SOURCES =
18libvppcom_la_DEPENDENCIES = \
19 libvppinfra.la \
20 libvlib.la \
Dave Wallace5c7cf1c2017-10-24 04:12:18 -040021 libsvm.la \
Dave Wallace5c7cf1c2017-10-24 04:12:18 -040022 libvlibmemoryclient.la
23
Dave Wallace6476b3c2017-10-25 12:30:37 -040024libvppcom_la_LIBADD = $(libvppcom_la_DEPENDENCIES) -lpthread -lrt
25libvcl_ldpreload_la_LIBADD = -lpthread -lrt -ldl
Dave Wallace5c7cf1c2017-10-24 04:12:18 -040026
27libvppcom_la_SOURCES += \
28 vcl/vppcom.c
29
30nobase_include_HEADERS += \
31 vcl/vppcom.h
32
33libvcl_ldpreload_la_SOURCES += \
34 vcl/vcom_socket_wrapper.c \
35 vcl/vcom.c \
Dave Wallace6476b3c2017-10-25 12:30:37 -040036 $(libvppcom_la_SOURCES) \
37 $(libvppinfra_la_SOURCES) \
38 $(libvlib_la_SOURCES) \
39 $(libsvm_la_SOURCES) \
40 $(libvlibmemoryclient_la_SOURCES)
Dave Wallace5c7cf1c2017-10-24 04:12:18 -040041
42nobase_include_HEADERS += \
43 vcl/vcom_socket_wrapper.h \
44 vcl/vcom_glibc_socket.h \
Dave Wallace048b1d62018-01-03 22:24:41 -050045 vcl/vcom.h
Dave Wallace5c7cf1c2017-10-24 04:12:18 -040046
47noinst_PROGRAMS += \
48 vcl_test_server \
49 vcl_test_client \
50 sock_test_server \
51 sock_test_client
52
53vcl_test_server_SOURCES = vcl/vcl_test_server.c
54vcl_test_server_LDADD = libvppcom.la
55
56vcl_test_client_SOURCES = vcl/vcl_test_client.c
Dave Wallace6476b3c2017-10-25 12:30:37 -040057
58# Link libvcl_ldpreload.la instead of vppcom.la
59# to validate that all symbols are included in
60# libvcl_ldpreload.la at build time.
61#
62# Not recommended for production VCL apps as
63# it includes extraneous code which will never
64# be executed.
65vcl_test_client_LDADD = libvcl_ldpreload.la
Dave Wallace5c7cf1c2017-10-24 04:12:18 -040066
67sock_test_server_SOURCES = vcl/sock_test_server.c
68sock_test_client_SOURCES = vcl/sock_test_client.c
69
70nobase_include_HEADERS += \
71 vcl/sock_test.h