2015-12-08 15:45:58 -07:00
|
|
|
# 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
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
AM_CFLAGS = -Wall
|
|
|
|
|
|
|
|
noinst_PROGRAMS =
|
|
|
|
BUILT_SOURCES =
|
|
|
|
bin_PROGRAMS =
|
|
|
|
CLEANFILES =
|
|
|
|
lib_LTLIBRARIES =
|
|
|
|
|
2016-04-26 12:09:05 +02:00
|
|
|
#
|
|
|
|
# jVpp binding
|
|
|
|
#
|
|
|
|
|
2016-07-20 14:53:48 +02:00
|
|
|
nobase_include_HEADERS = \
|
2016-04-26 12:09:05 +02:00
|
|
|
jvpp/org_openvpp_jvpp_VppJNIConnection.h
|
|
|
|
|
|
|
|
lib_LTLIBRARIES += libjvpp.la
|
|
|
|
|
|
|
|
libjvpp_la_SOURCES = jvpp/jvpp.c
|
|
|
|
libjvpp_la_LIBADD = -lvlibmemoryclient -lvlibapi -lsvm -lvppinfra \
|
|
|
|
-lpthread -lm -lrt
|
|
|
|
libjvpp_la_LDFLAGS = -module
|
|
|
|
libjvpp_la_CPPFLAGS = -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/linux
|
|
|
|
|
|
|
|
# todo make two jars api jar and impl jar
|
|
|
|
jarfile_jvpp = jvpp-$(PACKAGE_VERSION).jar
|
|
|
|
packagedir_jvpp = org/openvpp/jvpp
|
|
|
|
JAVAROOT = .
|
|
|
|
|
|
|
|
BUILT_SOURCES += jvpp/org_openvpp_jvpp_VppJNIConnection.h jvpp/jvpp.c
|
|
|
|
|
2016-06-27 09:25:13 -04:00
|
|
|
jvpp/org_openvpp_jvpp_VppJNIConnection.h: $(prefix)/../vpp/vpp-api/vpe.api
|
2016-04-26 12:09:05 +02:00
|
|
|
@echo " jVpp API"; \
|
2016-05-12 10:31:35 +02:00
|
|
|
cp -rf @srcdir@/jvpp/* -t jvpp/; \
|
|
|
|
mkdir -p jvpp/gen/target/org/openvpp/jvpp; \
|
|
|
|
cp -rf jvpp/org/openvpp/jvpp/* -t jvpp/gen/target/org/openvpp/jvpp/; \
|
2016-04-26 12:09:05 +02:00
|
|
|
$(CC) $(CPPFLAGS) -E -P -C -x c $< \
|
|
|
|
| vppapigen --input - --python defs_vpp_papi.py; \
|
2016-05-31 17:45:16 +02:00
|
|
|
mkdir -p dto future callfacade callback notification; \
|
2016-05-12 10:31:35 +02:00
|
|
|
./jvpp/gen/jvpp_gen.py -i defs_vpp_papi.py; \
|
2016-05-31 17:45:16 +02:00
|
|
|
cp -rf dto future callfacade callback notification *.java -t jvpp/gen/target/org/openvpp/jvpp/; \
|
2016-05-12 10:31:35 +02:00
|
|
|
cp -rf jvpp_gen.h -t jvpp/gen/target; \
|
2016-05-31 17:45:16 +02:00
|
|
|
rm -rf dto future callfacade callback notification *.java jvpp_gen.h; \
|
2016-05-12 10:31:35 +02:00
|
|
|
$(JAVAC) -classpath . -d . jvpp/gen/target/org/openvpp/jvpp/*.java \
|
|
|
|
jvpp/gen/target/org/openvpp/jvpp/dto/*.java \
|
|
|
|
jvpp/gen/target/org/openvpp/jvpp/callback/*.java \
|
2016-05-31 17:45:16 +02:00
|
|
|
jvpp/gen/target/org/openvpp/jvpp/notification/*.java \
|
2016-05-12 10:31:35 +02:00
|
|
|
jvpp/gen/target/org/openvpp/jvpp/callfacade/*.java \
|
|
|
|
jvpp/gen/target/org/openvpp/jvpp/future/*.java \
|
|
|
|
jvpp/gen/target/org/openvpp/jvpp/test/*.java \
|
|
|
|
|| (echo "JVpp compilation failed: $$?"; exit 1); \
|
|
|
|
$(JAVAH) -classpath . -d jvpp org.openvpp.jvpp.VppJNIConnection ; \
|
2016-04-26 12:09:05 +02:00
|
|
|
$(JAVAH) -classpath . -d jvpp org.openvpp.jvpp.JVppImpl ;
|
|
|
|
|
|
|
|
$(jarfile_jvpp): libjvpp.la
|
2016-05-12 10:31:35 +02:00
|
|
|
cd .libs ; $(JAR) cf $(JARFLAGS) ../$@ libjvpp.so.0.0.0 ../$(packagedir_jvpp)/* ; cd ..;
|
2016-04-26 12:09:05 +02:00
|
|
|
|
2016-07-20 14:53:48 +02:00
|
|
|
all-local: $(jarfile_jvpp)
|