X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fexamples%2Fsample-plugin%2FMakefile.am;h=1825a8f111fe6c97527ffcb04b2a68ced283f21a;hb=5a72e425f9c2d5ca049fd05cd280c4bff5f73d57;hp=a105afdd52b2e60ce357ec9bff05a649e4320e1c;hpb=006eb478bb7a14ba7ba4199fecce29ebc495fb9c;p=vpp.git diff --git a/src/examples/sample-plugin/Makefile.am b/src/examples/sample-plugin/Makefile.am index a105afdd52b..1825a8f111f 100644 --- a/src/examples/sample-plugin/Makefile.am +++ b/src/examples/sample-plugin/Makefile.am @@ -13,42 +13,42 @@ AUTOMAKE_OPTIONS = foreign subdir-objects -AM_CFLAGS = -Wall +AM_CFLAGS = -Wall -I${top_srcdir} -I${top_builddir} AM_LDFLAGS = -module -shared -avoid-version +AM_LIBTOOLFLAGS = --quiet +SUFFIXES = .api.h .api .api.json +API_FILES = +BUILT_SOURCES = +vppplugins_LTLIBRARIES = +vppapitestplugins_LTLIBRARIES = +noinst_HEADERS = +nobase_apiinclude_HEADERS = +ACLOCAL_AMFLAGS = -I m4 vppapitestpluginsdir = ${libdir}/vpp_api_test_plugins vpppluginsdir = ${libdir}/vpp_plugins -vppapitestplugins_LTLIBRARIES = sample_test_plugin.la -vppplugins_LTLIBRARIES = sample_plugin.la - -sample_plugin_la_SOURCES = sample/sample.c sample/node.c \ - sample/sample_plugin.api.h - -BUILT_SOURCES = sample/sample.api.h sample/sample.api.json - -SUFFIXES = .api.h .api +include sample.am %.api.h: %.api - mkdir -p `dirname $@` ; \ - $(CC) $(CPPFLAGS) -E -P -C -x c $^ \ - | vppapigen --input - --output $@ --show-name $@ + @echo " APIGEN " $@ ; \ + mkdir -p `dirname $@` ; \ + vppapigen --input $^ --output $@ %.api.json: %.api - @echo " JSON APIGEN " $@ ; \ - mkdir -p `dirname $@` ; \ - $(CC) $(CPPFLAGS) -E -P -C -x c $^ \ - | vppapigen --input - --json $@ + @echo " JSON APIGEN " $@ ; \ + mkdir -p `dirname $@` ; \ + vppapigen --input $^ JSON --output $@ + +apidir = $(prefix)/api/plugins +apiincludedir = ${includedir}/vpp_plugins -apidir = $(prefix)/sample/ -api_DATA = sample/sample.api.json +api_DATA = \ + $(patsubst %.api,%.api.json,$(API_FILES)) -noinst_HEADERS = \ - sample/sample_all_api_h.h \ - sample/sample_msg_enum.h \ - sample/sample.api.h +BUILT_SOURCES += \ + $(patsubst %.api,%.api.h,$(API_FILES)) -sample_test_plugin_la_SOURCES = sample/sample_test.c sample/sample_plugin.api.h # Remove *.la files install-data-hook: