From 237944f38b6b08b83dff9dafbf0f7ee3ce9a3752 Mon Sep 17 00:00:00 2001 From: Ed Warnicke Date: Wed, 6 Jul 2016 15:23:34 -0700 Subject: jvpp support for nsh Augment APIs with entry_index for reply, dump and details Squashes: https://gerrit.fd.io/r/#/c/2538/ https://gerrit.fd.io/r/#/c/2118/ https://gerrit.fd.io/r/#/c/1884/ Change-Id: Ibbdc53e2db8ffa5499380f6ce70356c4a401315e Signed-off-by: Marek Gradzki Signed-off-by: Hongjun Ni Signed-off-by: Ed Warnicke --- nsh-plugin-api/Makefile.am | 2 ++ nsh-plugin-api/configure.ac | 14 ++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 nsh-plugin-api/Makefile.am create mode 100644 nsh-plugin-api/configure.ac (limited to 'nsh-plugin-api') diff --git a/nsh-plugin-api/Makefile.am b/nsh-plugin-api/Makefile.am new file mode 100644 index 0000000..e079ab7 --- /dev/null +++ b/nsh-plugin-api/Makefile.am @@ -0,0 +1,2 @@ +AUTOMAKE_OPTIONS = foreign +SUBDIRS = java diff --git a/nsh-plugin-api/configure.ac b/nsh-plugin-api/configure.ac new file mode 100644 index 0000000..4430c8f --- /dev/null +++ b/nsh-plugin-api/configure.ac @@ -0,0 +1,14 @@ +AC_INIT(vpp-api, 1.0.0) +LT_INIT +AC_CONFIG_MACRO_DIR([m4]) +AC_CONFIG_SUBDIRS([java]) +AM_INIT_AUTOMAKE +AM_SILENT_RULES([yes]) + +AM_PROG_AS +AC_PROG_CC +AM_PROG_CC_C_O + +AC_CONFIG_FILES([Makefile]) +AC_OUTPUT + -- cgit 1.2.3-korg