554ebfc893abbf162172cfd779a0d9acd981780d
[vpp.git] / src / vcl.am
1 # 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
14 lib_LTLIBRARIES += libvppcom.la libvcl_ldpreload.la
15
16 libvppcom_la_SOURCES =
17 libvcl_ldpreload_la_SOURCES =
18 libvppcom_la_DEPENDENCIES =                     \
19         libsvm.la                               \
20         libvlibmemoryclient.la
21
22 libvppcom_la_LIBADD = $(libvppcom_la_DEPENDENCIES) -lpthread -lrt -ldl
23
24 libvppcom_la_SOURCES +=                         \
25   vcl/vcl_event.c                               \
26   vcl/vppcom.c                                  \
27   $(libvppinfra_la_SOURCES)                     \
28   $(libsvm_la_SOURCES)                          \
29   $(libvlibmemoryclient_la_SOURCES)
30
31 nobase_include_HEADERS +=                       \
32   vcl/vcl_event.h                               \
33   vcl/vppcom.h
34
35 libvcl_ldpreload_la_LIBADD =  $(libvppcom_la_DEPENDENCIES) -lpthread -lrt -ldl
36
37 libvcl_ldpreload_la_SOURCES +=                  \
38   vcl/ldp_socket_wrapper.c                      \
39   vcl/ldp.c                                     \
40   $(libvppcom_la_SOURCES)
41
42 nobase_include_HEADERS +=                       \
43   vcl/ldp_socket_wrapper.h                      \
44   vcl/ldp_glibc_socket.h                        \
45   vcl/ldp.h
46
47 noinst_PROGRAMS +=                              \
48         vcl_test_server                         \
49         vcl_test_client                         \
50         sock_test_server                        \
51         sock_test_client                        \
52         test_vcl_listener_server                \
53         test_vcl_listener_client
54
55
56 test_vcl_listener_server_SOURCES = vcl/test_vcl_listener_server.c
57 test_vcl_listener_server_LDADD = libvppcom.la
58
59 test_vcl_listener_client_SOURCES = vcl/test_vcl_listener_client.c
60 test_vcl_listener_client_LDADD = libvppcom.la
61
62 vcl_test_server_SOURCES = vcl/vcl_test_server.c
63 vcl_test_server_LDADD = libvppcom.la
64
65
66 vcl_test_client_SOURCES = vcl/vcl_test_client.c
67 vcl_test_client_LDADD = libvppcom.la
68
69 sock_test_server_SOURCES = vcl/sock_test_server.c
70 sock_test_client_SOURCES = vcl/sock_test_client.c
71
72 nobase_include_HEADERS +=                       \
73   vcl/sock_test_common.h                        \
74   vcl/sock_test.h                               \
75   vcl/vcl_test.h
76
77 # vi:syntax=automake