390f4a45d1eb332577190244d44450254b0f0db1
[vpp.git] / build-root / emacs-lisp / plugin-makefile-skel.el
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
18 (define-skeleton plugin-makefile-skel
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:
29
30 #     http://www.apache.org/licenses/LICENSE-2.0
31
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
40 AM_CFLAGS = -Wall -I@TOOLKIT_INCLUDE@
41
42 lib_LTLIBRARIES = " plugin-name "_plugin.la " plugin-name "_test_plugin.la
43 " plugin-name "_plugin_la_SOURCES = " plugin-name "/" plugin-name ".c  \\
44         " plugin-name "/node.c \\
45         " plugin-name "/" plugin-name "_plugin.api.h 
46 " plugin-name "_plugin_la_LDFLAGS = -module
47
48 BUILT_SOURCES = " plugin-name "/" plugin-name ".api.h
49
50 SUFFIXES = .api.h .api
51
52 %.api.h: %.api
53         mkdir -p `dirname $@` ; \\
54         $(CC) $(CPPFLAGS) -E -P -C -x c $^ \\
55         | vppapigen --input - --output $@ --show-name $@
56
57 nobase_include_HEADERS =                        \\
58   " plugin-name "/" plugin-name "_all_api_h.h                   \\
59   " plugin-name "/" plugin-name "_msg_enum.h                    \\
60   " plugin-name "/" plugin-name ".api.h
61
62 " plugin-name "_test_plugin_la_SOURCES = \\
63   " plugin-name "/" plugin-name "_test.c " plugin-name "/" plugin-name "_plugin.api.h
64 " plugin-name "_test_plugin_la_LDFLAGS = -module
65
66 if WITH_PLUGIN_TOOLKIT
67 install-data-hook:
68         mkdir /usr/lib/vpp_plugins || true
69         mkdir /usr/lib/vpp_api_test_plugins || true
70         cp $(prefix)/lib/" plugin-name "_plugin.so.*.*.* /usr/lib/vpp_plugins
71         cp $(prefix)/lib/" plugin-name "_test_plugin.so.*.*.* \\
72                 /usr/lib/vpp_api_test_plugins
73         rm -f $(prefix)/lib/" plugin-name "_plugin.*
74         rm -f $(prefix)/lib/" plugin-name "_test_plugin.*
75 endif
76 ")