5f9dcff39d
- Moved Python generator tool to tools directory - Added build-vpp-api Makefile target - Generator now only creates a Python representation of the .api the rest of the framework is in the vpp_papi script - Each plugin has its own namespace. - Plugin Python files are installed in vpp_papi_plugins for easy use inside the build tree. Change-Id: I272c83bb7e5d5e416bdbd8a790a3cc35c5a04e38 Signed-off-by: Ole Troan <ot@cisco.com>
82 lines
2.4 KiB
Makefile
82 lines
2.4 KiB
Makefile
# 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.
|
|
|
|
AUTOMAKE_OPTIONS = foreign subdir-objects
|
|
|
|
AM_CFLAGS = -Wall
|
|
|
|
lib_LTLIBRARIES = libvlibapi.la libvlibmemory.la libvlibmemoryclient.la \
|
|
libvlibsocket.la
|
|
|
|
libvlibapi_la_SOURCES = \
|
|
vlibapi/api.h \
|
|
vlibapi/api_shared.c \
|
|
vlibapi/node_serialize.c
|
|
|
|
nobase_include_HEADERS = vlibapi/api.h
|
|
|
|
libvlibmemory_la_SOURCES = \
|
|
vlibmemory/api.h \
|
|
vlibmemory/memclnt.api \
|
|
vlibmemory/memory_shared.c \
|
|
vlibmemory/memory_vlib.c \
|
|
vlibmemory/vl_memory_api_h.h \
|
|
vlibmemory/vl_memory_msg_enum.h \
|
|
vlibmemory/unix_shared_memory_queue.c \
|
|
vlibmemory/unix_shared_memory_queue.h
|
|
|
|
libvlibmemoryclient_la_SOURCES = \
|
|
vlibmemory/api.h \
|
|
vlibmemory/memclnt.api \
|
|
vlibmemory/memory_shared.c \
|
|
vlibmemory/memory_client.c \
|
|
vlibmemory/vl_memory_api_h.h \
|
|
vlibmemory/vl_memory_msg_enum.h \
|
|
vlibmemory/unix_shared_memory_queue.c \
|
|
vlibmemory/unix_shared_memory_queue.h
|
|
|
|
nobase_include_HEADERS += \
|
|
vlibmemory/api.h \
|
|
vlibmemory/vl_memory_api_h.h \
|
|
vlibmemory/vl_memory_msg_enum.h \
|
|
vlibmemory/unix_shared_memory_queue.h \
|
|
vlibmemory/memclnt.api.h
|
|
|
|
libvlibsocket_la_SOURCES = \
|
|
vlibsocket/api.h \
|
|
vlibsocket/sockclnt.api \
|
|
vlibsocket/sockclnt_vlib.c \
|
|
vlibsocket/socksvr_vlib.c \
|
|
vlibsocket/vl_socket_api_h.h \
|
|
vlibsocket/vl_socket_msg_enum.h
|
|
|
|
nobase_include_HEADERS += \
|
|
vlibsocket/api.h \
|
|
vlibsocket/vl_socket_api_h.h \
|
|
vlibsocket/vl_socket_msg_enum.h \
|
|
vlibsocket/sockclnt.api.h
|
|
|
|
BUILT_SOURCES = vlibsocket/sockclnt.api.h vlibmemory/memclnt.api.h
|
|
|
|
SUFFIXES = .api.h .api
|
|
|
|
%.api.h: %.api
|
|
@echo " APIGEN " $@ ; \
|
|
mkdir -p `dirname $@` ; \
|
|
$(CC) $(CPPFLAGS) -E -P -C -x c $^ \
|
|
| vppapigen --input - --output $@ --show-name $@
|
|
|
|
# install the API definition, so we can produce java bindings, etc.
|
|
apidir = $(prefix)/vlibmemory
|
|
api_DATA = vlibmemory/memclnt.api
|