diff options
author | Ed Warnicke <eaw@cisco.com> | 2016-07-06 15:23:34 -0700 |
---|---|---|
committer | Ed Warnicke <eaw@cisco.com> | 2016-09-07 13:27:27 -0700 |
commit | 237944f38b6b08b83dff9dafbf0f7ee3ce9a3752 (patch) | |
tree | 03358b48c1fcb6a1ab1b25da5f55e42fd0a14a8e /nsh-plugin/Makefile.am | |
parent | c8291ef9611e465efd5ada0ff77b1018640b9690 (diff) |
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 <mgradzki@cisco.com>
Signed-off-by: Hongjun Ni <hongjun.ni@intel.com>
Signed-off-by: Ed Warnicke <eaw@cisco.com>
Diffstat (limited to 'nsh-plugin/Makefile.am')
-rw-r--r-- | nsh-plugin/Makefile.am | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/nsh-plugin/Makefile.am b/nsh-plugin/Makefile.am index e34e903..4ecc63e 100644 --- a/nsh-plugin/Makefile.am +++ b/nsh-plugin/Makefile.am @@ -13,27 +13,32 @@ # limitations under the License. AUTOMAKE_OPTIONS = foreign subdir-objects - +SUBDIRS=java AM_CFLAGS = -Wall -I@TOOLKIT_INCLUDE@ +nsh_plugin_la_CPPFLAGS = -DDEBUG -g +nsh_test_plugin_la_CPPFLAGS = -DDEBUG -g + +CPPFLAGS += -DDEBUG -g + lib_LTLIBRARIES = nsh_plugin.la nsh_test_plugin.la nsh_plugin_la_SOURCES = nsh/nsh.c \ nsh/nsh_plugin.api.h nsh_plugin_la_LDFLAGS = -module -BUILT_SOURCES = nsh/nsh.api.h +BUILT_SOURCES = vpp-api/nsh.api.h SUFFIXES = .api.h .api -%.api.h: %.api +vpp-api/%.api.h: nsh/%.api mkdir -p `dirname $@` ; \ $(CC) $(CPPFLAGS) -E -P -C -x c $^ \ | vppapigen --input - --output $@ --show-name $@ nobase_include_HEADERS = \ - nsh/nsh_all_api_h.h \ - nsh/nsh_msg_enum.h \ - nsh/nsh.api.h + vpp-api/nsh_all_api_h.h \ + vpp-api/nsh_msg_enum.h \ + vpp-api/nsh.api.h nsh_test_plugin_la_SOURCES = \ nsh/nsh_test.c nsh/nsh_plugin.api.h |