aboutsummaryrefslogtreecommitdiffstats
path: root/src/vcl.am
diff options
context:
space:
mode:
authorKeith Burns (alagalah) <alagalah@gmail.com>2018-02-02 08:21:56 -0800
committerDave Wallace <dwallacelf@gmail.com>2018-02-02 22:08:06 +0000
commit5a2946c6174f91032792b8e4978c8d235f2281f0 (patch)
tree5b14a85c309710fe62cbbb43613a51b019f7eb25 /src/vcl.am
parentc1c0976fa28d90591d7cfbb6544ad871671c6c90 (diff)
Clean up for vcl.am, making vppcom.h C++ aware
Change-Id: I2548ebd37e16bed50b5c8046b728415a341413e3 Signed-off-by: Keith Burns (alagalah) <alagalah@gmail.com>
Diffstat (limited to 'src/vcl.am')
-rw-r--r--src/vcl.am19
1 files changed, 9 insertions, 10 deletions
diff --git a/src/vcl.am b/src/vcl.am
index 642cb351588..eac3d7e48cb 100644
--- a/src/vcl.am
+++ b/src/vcl.am
@@ -16,28 +16,27 @@ lib_LTLIBRARIES += libvppcom.la libvcl_ldpreload.la
libvppcom_la_SOURCES =
libvcl_ldpreload_la_SOURCES =
libvppcom_la_DEPENDENCIES = \
- libvppinfra.la \
- libvlib.la \
libsvm.la \
libvlibmemoryclient.la
-libvppcom_la_LIBADD = $(libvppcom_la_DEPENDENCIES) -lpthread -lrt
-libvcl_ldpreload_la_LIBADD = -lpthread -lrt -ldl
+libvppcom_la_LIBADD = $(libvppcom_la_DEPENDENCIES) -lpthread -lrt -ldl
libvppcom_la_SOURCES += \
- vcl/vppcom.c
+ vcl/vppcom.c \
+ $(libvppinfra_la_SOURCES) \
+ $(libvlib_la_SOURCES) \
+ $(libsvm_la_SOURCES) \
+ $(libvlibmemoryclient_la_SOURCES)
nobase_include_HEADERS += \
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 \
- $(libvppcom_la_SOURCES) \
- $(libvppinfra_la_SOURCES) \
- $(libvlib_la_SOURCES) \
- $(libsvm_la_SOURCES) \
- $(libvlibmemoryclient_la_SOURCES)
+ $(libvppcom_la_SOURCES)
nobase_include_HEADERS += \
vcl/vcom_socket_wrapper.h \