X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvcl.am;h=89e18416b1e29ca8f9e254cd2595d9c0aa40e769;hb=63777e599af8df1e6bf8c564c638d52007af47d0;hp=eac3d7e48cb29d2569a71e8f9ab9f154b84a04ad;hpb=5a2946c6174f91032792b8e4978c8d235f2281f0;p=vpp.git diff --git a/src/vcl.am b/src/vcl.am index eac3d7e48cb..89e18416b1e 100644 --- a/src/vcl.am +++ b/src/vcl.am @@ -22,6 +22,7 @@ libvppcom_la_DEPENDENCIES = \ libvppcom_la_LIBADD = $(libvppcom_la_DEPENDENCIES) -lpthread -lrt -ldl libvppcom_la_SOURCES += \ + vcl/vcl_event.c \ vcl/vppcom.c \ $(libvppinfra_la_SOURCES) \ $(libvlib_la_SOURCES) \ @@ -29,29 +30,40 @@ libvppcom_la_SOURCES += \ $(libvlibmemoryclient_la_SOURCES) nobase_include_HEADERS += \ + vcl/vcl_event.h \ vcl/vppcom.h libvcl_ldpreload_la_LIBADD = $(libvppcom_la_DEPENDENCIES) -lpthread -lrt -ldl libvcl_ldpreload_la_SOURCES += \ - vcl/vcom_socket_wrapper.c \ - vcl/vcom.c \ + vcl/ldp_socket_wrapper.c \ + vcl/ldp.c \ $(libvppcom_la_SOURCES) nobase_include_HEADERS += \ - vcl/vcom_socket_wrapper.h \ - vcl/vcom_glibc_socket.h \ - vcl/vcom.h + vcl/ldp_socket_wrapper.h \ + vcl/ldp_glibc_socket.h \ + vcl/ldp.h noinst_PROGRAMS += \ vcl_test_server \ vcl_test_client \ sock_test_server \ - sock_test_client + sock_test_client \ + test_vcl_listener_server \ + test_vcl_listener_client + + +test_vcl_listener_server_SOURCES = vcl/test_vcl_listener_server.c +test_vcl_listener_server_LDADD = libvppcom.la + +test_vcl_listener_client_SOURCES = vcl/test_vcl_listener_client.c +test_vcl_listener_client_LDADD = libvppcom.la vcl_test_server_SOURCES = vcl/vcl_test_server.c vcl_test_server_LDADD = libvppcom.la + vcl_test_client_SOURCES = vcl/vcl_test_client.c # Link libvcl_ldpreload.la instead of vppcom.la @@ -68,3 +80,5 @@ sock_test_client_SOURCES = vcl/sock_test_client.c nobase_include_HEADERS += \ vcl/sock_test.h + +# vi:syntax=automake