X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=build-root%2Femacs-lisp%2Fplugin-am-skel.el;fp=build-root%2Femacs-lisp%2Fplugin-makefile-skel.el;h=5a082b4c002b56ab1502020818d2fbcfaaadff14;hb=605c63678272af5caeee1d309de6319eb0ac69b0;hp=7cb6cbfd5e33d172afe115843f765abe6795e5b5;hpb=5e6b9580f202188cbe158368bdbe35c3f39973d7;p=vpp.git diff --git a/build-root/emacs-lisp/plugin-makefile-skel.el b/build-root/emacs-lisp/plugin-am-skel.el similarity index 52% rename from build-root/emacs-lisp/plugin-makefile-skel.el rename to build-root/emacs-lisp/plugin-am-skel.el index 7cb6cbfd5e3..5a082b4c002 100644 --- a/build-root/emacs-lisp/plugin-makefile-skel.el +++ b/build-root/emacs-lisp/plugin-am-skel.el @@ -1,4 +1,4 @@ -;;; plugin-makefile-skel.el - vpp engine plug-in "main.c" skeleton +;;; plugin-am-skel.el - vpp engine plug-in foo.am skeleton ;;; ;;; Copyright (c) 2016 Cisco and/or its affiliates. ;;; Licensed under the Apache License, Version 2.0 (the "License"); @@ -15,8 +15,8 @@ (require 'skeleton) -(define-skeleton skel-plugin-makefile -"Insert a plug-in 'Makefile.am' skeleton " +(define-skeleton skel-plugin-makefile-am-fragment +"Insert a plug-in 'foo.am' skeleton " nil '(if (not (boundp 'plugin-name)) (setq plugin-name (read-string "Plugin name: "))) @@ -35,41 +35,26 @@ nil # See the License for the specific language governing permissions and # limitations under the License. -AUTOMAKE_OPTIONS = foreign subdir-objects +vppapitestplugins_LTLIBRARIES += " plugin-name "_test_plugin.la +vppplugins_LTLIBRARIES += " plugin-name "_plugin.la -AM_CFLAGS = -Wall -AM_LDFLAGS = -module -shared -avoid-version +" plugin-name "_plugin_la_SOURCES = \\ + " plugin-name "/node.c \\ + " plugin-name "/" plugin-name ".c \\ + " plugin-name "/" plugin-name ".h \\ + " plugin-name "/" plugin-name "_all_api_h.h \\ + " plugin-name "/" plugin-name "_msg_enum.h -vppapitestpluginsdir = ${libdir}/vpp_api_test_plugins -vpppluginsdir = ${libdir}/vpp_plugins +API_FILES += " plugin-name "/" plugin-name ".api -vppplugins_LTLIBRARIES = " plugin-name "_plugin.la -vppapitestplugins_LTLIBRARIES = " plugin-name "_test_plugin.la - -" plugin-name "_plugin_la_SOURCES = " plugin-name "/" plugin-name ".c \\ - " plugin-name "/node.c \\ - " plugin-name "/" plugin-name "_plugin.api.h -" plugin-name "_plugin_la_LDFLAGS = -module - -BUILT_SOURCES = " plugin-name "/" plugin-name ".api.h - -SUFFIXES = .api.h .api - -%.api.h: %.api - mkdir -p `dirname $@` ; \\ - $(CC) $(CPPFLAGS) -E -P -C -x c $^ \\ - | vppapigen --input - --output $@ --show-name $@ - -noinst_HEADERS = \\ - " plugin-name "/" plugin-name "_all_api_h.h \\ - " plugin-name "/" plugin-name "_msg_enum.h \\ - " plugin-name "/" plugin-name ".api.h +nobase_apiinclude_HEADERS += \\ + " plugin-name "/" plugin-name "_all_api_h.h \\ + " plugin-name "/" plugin-name "_msg_enum.h \\ + " plugin-name "/" plugin-name ".api.h " plugin-name "_test_plugin_la_SOURCES = \\ - " plugin-name "/" plugin-name "_test.c " plugin-name "/" plugin-name "_plugin.api.h + " plugin-name "/" plugin-name "_test.c \\ + " plugin-name "/" plugin-name ".api.h -# Remove *.la files -install-data-hook: - @(cd $(vpppluginsdir) && $(RM) $(vppplugins_LTLIBRARIES)) - @(cd $(vppapitestpluginsdir) && $(RM) $(vppapitestplugins_LTLIBRARIES)) +# vi:syntax=automake ")