summaryrefslogtreecommitdiffstats
path: root/src/configure.ac
AgeCommit message (Expand)AuthorFilesLines
2017-05-15Add GTP-U plugin. VPP-694Hongjun Ni1-0/+1
2017-03-29Bugfixing and documentation for SRv6Pablo Camarillo1-1/+0
2017-03-22Update master revision to 17.07v17.07-rc0Ole Troan1-1/+1
2017-03-22Add memif - packet memory interface for intra-host communicationDamjan Marion1-0/+1
2017-03-15Python API: Change from cPython to CFFI.Ole Troan1-0/+9
2017-03-10Retire vpp_liteDamjan Marion1-2/+2
2017-03-04Evolving SRv6 (Segment Routing for IPv6)Pablo Camarillo1-0/+1
2017-03-03Fixed PLUGIN_DISABLE bugPablo Camarillo1-1/+1
2017-01-27dpdk: rework cryptodev ipsec build and setupSergio Gonzalez Monroy1-2/+2
2017-01-26Change automake python macro to get python pathTomofumi Hayashi1-0/+1
2017-01-16Add --without-libssl configure parameterDamjan Marion1-4/+2
2017-01-03Do not require external vppapigen when not cross-compilingDamjan Marion1-0/+16
2017-01-01Move java,lua api and remaining plugins to src/Damjan Marion1-5/+37
2016-12-28Reorganize source tree to use single autotools instanceDamjan Marion1-0/+195
kground-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
# Copyright (c) 2015 Cisco and/or its affiliates.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

lib_LTLIBRARIES += libvlibmemory.la libvlibmemoryclient.la

libvlibmemory_la_DEPENDENCIES = libvppinfra.la libsvm.la libvlib.la
libvlibmemory_la_LIBADD = $(libvlibmemory_la_DEPENDENCIES) -lpthread
libvlibmemory_la_SOURCES =			\
	vlibapi/api.h				\
        vlibapi/api_helper_macros.h		\
	vlibapi/api_shared.c			\
	vlibapi/node_serialize.c		\
	vlibmemory/api.h			\
	vlibmemory/memclnt.api			\
	vlibmemory/memory_api.c			\
	vlibmemory/memory_shared.c		\
	vlibmemory/socket_api.c			\
	vlibmemory/vlib_api.c			\
	vlibmemory/vlib_api_cli.c		\
	vlibmemory/vl_memory_api_h.h		\
	vlibmemory/vl_memory_msg_enum.h

nobase_include_HEADERS += 			\
	vlibapi/api.h				\
	vlibapi/api_common.h			\
	vlibapi/api_helper_macros.h		\
	vlibapi/vat_helper_macros.h

libvlibmemoryclient_la_DEPENDENCIES = libvppinfra.la libsvm.la
libvlibmemoryclient_la_LIBADD = $(libvlibmemoryclient_la_DEPENDENCIES) -lpthread
libvlibmemoryclient_la_SOURCES = 		\
        vlibapi/api_helper_macros.h		\
	vlibapi/api_shared.c			\
	vlibapi/node_serialize.c		\
	vlibmemory/memclnt.api			\
	vlibmemory/memory_client.c		\
	vlibmemory/memory_shared.c		\
	vlibmemory/socket_client.c		\
	vlibmemory/vl_memory_api_h.h		\
	vlibmemory/vl_memory_msg_enum.h

nobase_include_HEADERS +=			\
	vlibmemory/api.h			\
	vlibmemory/memory_api.h			\
	vlibmemory/memory_shared.h		\
	vlibmemory/memory_client.h		\
	vlibmemory/socket_api.h			\
	vlibmemory/socket_client.h		\
	vlibmemory/vl_memory_api_h.h		\
	vlibmemory/vl_memory_msg_enum.h		\
	vlibmemory/memclnt.api.h

BUILT_SOURCES +=				\
	vlibmemory/memclnt.api.h		\
	vlibmemory/memclnt.api.json

noinst_PROGRAMS += sock_test

sock_test_SOURCES = vlibsocket/sock_test.c

API_FILES += vlibmemory/memclnt.api 

# vi:syntax=automake