Add config option to use dlmalloc instead of mheap
[vpp.git] / src / examples / sample-plugin / Makefile.am
index e221f8c..2622f4e 100644 (file)
 
 AUTOMAKE_OPTIONS = foreign subdir-objects
 
-AM_CFLAGS = -Wall
+AM_CFLAGS = -Wall -I${top_srcdir} -I${top_builddir} @DLMALLOC@
 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)/sample/
-api_DATA = sample.api.json
+apidir = $(prefix)/api/plugins
+apiincludedir = ${includedir}/vpp_plugins
 
-noinst_HEADERS =                               \
-  sample/sample_all_api_h.h                    \
-  sample/sample_msg_enum.h                     \
-  sample/sample.api.h
+api_DATA = \
+       $(patsubst %.api,%.api.json,$(API_FILES))
+
+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:
        @(cd $(vpppluginsdir) && $(RM) $(vppplugins_LTLIBRARIES))
        @(cd $(vppapitestpluginsdir) && $(RM) $(vppapitestplugins_LTLIBRARIES))
+
+CLEANFILES = $(BUILT_SOURCES)