diff options
author | Florin Coras <fcoras@cisco.com> | 2018-01-15 04:43:02 -0800 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2018-01-17 16:11:59 +0000 |
commit | 34ae9b1a5463405d7fa9826605c2becceed38253 (patch) | |
tree | c49853a5e70bf1baa3d5aec2805a8ee029b118c0 /src/plugins/stn.am | |
parent | 663ac58e1865acf669af43846b729ddf0782d20d (diff) |
stn: add vat support
Change-Id: Ifba0a4a297b6c01d75b86bc211a32740af5e48ed
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/plugins/stn.am')
-rw-r--r-- | src/plugins/stn.am | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/src/plugins/stn.am b/src/plugins/stn.am index e2f1a179b18..5e755e2db4e 100644 --- a/src/plugins/stn.am +++ b/src/plugins/stn.am @@ -12,15 +12,24 @@ # limitations under the License. vppplugins_LTLIBRARIES += stn_plugin.la +vppapitestplugins_LTLIBRARIES += stn_test_plugin.la -stn_plugin_la_SOURCES = stn/stn.c stn/stn_api.c +stn_plugin_la_SOURCES = \ + stn/stn.c \ + stn/stn_api.c \ + stn/stn_plugin.api.h -BUILT_SOURCES += \ - stn/stn.api.h \ - stn/stn.api.json +stn_test_plugin_la_SOURCES = \ + stn/stn_test.c \ + stn/stn_plugin.api.h noinst_HEADERS += stn/stn.h +nobase_apiinclude_HEADERS += \ + stn/stn_all_api_h.h \ + stn/stn_msg_enum.h \ + stn/stn.api.h + API_FILES += stn/stn.api -# vi:syntax=automake
\ No newline at end of file +# vi:syntax=automake |