Dave Barach | b852bfa | 2016-01-04 15:27:42 -0500 | [diff] [blame] | 1 | ;;; plugin-makefile-skel.el - vpp engine plug-in "main.c" skeleton |
| 2 | ;;; |
| 3 | ;;; Copyright (c) 2016 Cisco and/or its affiliates. |
| 4 | ;;; Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | ;;; you may not use this file except in compliance with the License. |
| 6 | ;;; You may obtain a copy of the License at: |
| 7 | ;;; |
| 8 | ;;; http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | ;;; |
| 10 | ;;; Unless required by applicable law or agreed to in writing, software |
| 11 | ;;; distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | ;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | ;;; See the License for the specific language governing permissions and |
| 14 | ;;; limitations under the License. |
| 15 | |
| 16 | (require 'skeleton) |
| 17 | |
Keith Burns (alagalah) | ca46d8c | 2016-03-18 07:22:15 -0700 | [diff] [blame] | 18 | (define-skeleton skel-plugin-makefile |
Dave Barach | b852bfa | 2016-01-04 15:27:42 -0500 | [diff] [blame] | 19 | "Insert a plug-in 'Makefile.am' skeleton " |
| 20 | nil |
| 21 | '(if (not (boundp 'plugin-name)) |
| 22 | (setq plugin-name (read-string "Plugin name: "))) |
| 23 | '(setq PLUGIN-NAME (upcase plugin-name)) |
| 24 | " |
| 25 | # Copyright (c) <current-year> <your-organization> |
| 26 | # Licensed under the Apache License, Version 2.0 (the \"License\"); |
| 27 | # you may not use this file except in compliance with the License. |
| 28 | # You may obtain a copy of the License at: |
Damjan Marion | 952f4f7 | 2016-07-08 13:46:48 +0200 | [diff] [blame] | 29 | # |
Dave Barach | b852bfa | 2016-01-04 15:27:42 -0500 | [diff] [blame] | 30 | # http://www.apache.org/licenses/LICENSE-2.0 |
Damjan Marion | 952f4f7 | 2016-07-08 13:46:48 +0200 | [diff] [blame] | 31 | # |
Dave Barach | b852bfa | 2016-01-04 15:27:42 -0500 | [diff] [blame] | 32 | # Unless required by applicable law or agreed to in writing, software |
| 33 | # distributed under the License is distributed on an \"AS IS\" BASIS, |
| 34 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 35 | # See the License for the specific language governing permissions and |
| 36 | # limitations under the License. |
| 37 | |
| 38 | AUTOMAKE_OPTIONS = foreign subdir-objects |
| 39 | |
Damjan Marion | 952f4f7 | 2016-07-08 13:46:48 +0200 | [diff] [blame] | 40 | AM_CFLAGS = -Wall |
| 41 | AM_LDFLAGS = -module -shared -avoid-version |
Dave Barach | b852bfa | 2016-01-04 15:27:42 -0500 | [diff] [blame] | 42 | |
Damjan Marion | 952f4f7 | 2016-07-08 13:46:48 +0200 | [diff] [blame] | 43 | vppapitestpluginsdir = ${libdir}/vpp_api_test_plugins |
| 44 | vpppluginsdir = ${libdir}/vpp_plugins |
| 45 | |
| 46 | vppplugins_LTLIBRARIES = " plugin-name "_plugin.la |
| 47 | vppapitestplugins_LTLIBRARIES = " plugin-name "_test_plugin.la |
| 48 | |
Dave Barach | b852bfa | 2016-01-04 15:27:42 -0500 | [diff] [blame] | 49 | " plugin-name "_plugin_la_SOURCES = " plugin-name "/" plugin-name ".c \\ |
| 50 | " plugin-name "/node.c \\ |
Damjan Marion | 952f4f7 | 2016-07-08 13:46:48 +0200 | [diff] [blame] | 51 | " plugin-name "/" plugin-name "_plugin.api.h |
Dave Barach | b852bfa | 2016-01-04 15:27:42 -0500 | [diff] [blame] | 52 | " plugin-name "_plugin_la_LDFLAGS = -module |
| 53 | |
| 54 | BUILT_SOURCES = " plugin-name "/" plugin-name ".api.h |
| 55 | |
| 56 | SUFFIXES = .api.h .api |
| 57 | |
| 58 | %.api.h: %.api |
| 59 | mkdir -p `dirname $@` ; \\ |
| 60 | $(CC) $(CPPFLAGS) -E -P -C -x c $^ \\ |
| 61 | | vppapigen --input - --output $@ --show-name $@ |
| 62 | |
Damjan Marion | 952f4f7 | 2016-07-08 13:46:48 +0200 | [diff] [blame] | 63 | noinst_HEADERS = \\ |
Dave Barach | b852bfa | 2016-01-04 15:27:42 -0500 | [diff] [blame] | 64 | " plugin-name "/" plugin-name "_all_api_h.h \\ |
| 65 | " plugin-name "/" plugin-name "_msg_enum.h \\ |
| 66 | " plugin-name "/" plugin-name ".api.h |
| 67 | |
| 68 | " plugin-name "_test_plugin_la_SOURCES = \\ |
| 69 | " plugin-name "/" plugin-name "_test.c " plugin-name "/" plugin-name "_plugin.api.h |
Dave Barach | b852bfa | 2016-01-04 15:27:42 -0500 | [diff] [blame] | 70 | |
Damjan Marion | 952f4f7 | 2016-07-08 13:46:48 +0200 | [diff] [blame] | 71 | # Remove *.la files |
Dave Barach | b852bfa | 2016-01-04 15:27:42 -0500 | [diff] [blame] | 72 | install-data-hook: |
Damjan Marion | 952f4f7 | 2016-07-08 13:46:48 +0200 | [diff] [blame] | 73 | @(cd $(vpppluginsdir) && $(RM) $(vppplugins_LTLIBRARIES)) |
| 74 | @(cd $(vppapitestpluginsdir) && $(RM) $(vppapitestplugins_LTLIBRARIES)) |
Dave Barach | b852bfa | 2016-01-04 15:27:42 -0500 | [diff] [blame] | 75 | endif |
| 76 | ") |