blob: 650d27c5e0f382576a4e5e4ae6ab07c5891f340c [file] [log] [blame]
Dave Barach605c6362017-01-02 12:22:48 -05001;;; plugin-am-skel.el - vpp engine plug-in foo.am 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 skel-plugin-makefile-am-fragment
19"Insert a plug-in 'foo.am' skeleton "
20nil
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
38vppapitestplugins_LTLIBRARIES += " plugin-name "_test_plugin.la
39vppplugins_LTLIBRARIES += " plugin-name "_plugin.la
Dave Barachd7a37a72018-08-10 16:22:48 -040040" plugin-name "_plugin_la_LIBADD =
Dave Barach605c6362017-01-02 12:22:48 -050041
42" plugin-name "_plugin_la_SOURCES = \\
43 " plugin-name "/node.c \\
44 " plugin-name "/" plugin-name ".c \\
Dave Barachf4addbd2018-04-30 13:03:46 -040045 " plugin-name "/" plugin-name "_periodic.c \\
Dave Barach605c6362017-01-02 12:22:48 -050046 " plugin-name "/" plugin-name ".h \\
47 " plugin-name "/" plugin-name "_all_api_h.h \\
48 " plugin-name "/" plugin-name "_msg_enum.h
49
50API_FILES += " plugin-name "/" plugin-name ".api
51
52nobase_apiinclude_HEADERS += \\
53 " plugin-name "/" plugin-name "_all_api_h.h \\
54 " plugin-name "/" plugin-name "_msg_enum.h \\
55 " plugin-name "/" plugin-name ".api.h
56
57" plugin-name "_test_plugin_la_SOURCES = \\
58 " plugin-name "/" plugin-name "_test.c \\
59 " plugin-name "/" plugin-name ".api.h
60
Dave Barachd7a37a72018-08-10 16:22:48 -040061if CPU_X86_64
62 " plugin-name "_multiversioning_sources = \\
63 " plugin-name "/node.c
64
65if CC_SUPPORTS_AVX2
66###############################################################
67# AVX2
68###############################################################
69lib" plugin-name "_plugin_avx2_la_SOURCES = $(" plugin-name "_multiversioning_sources)
70lib" plugin-name "_plugin_avx2_la_CFLAGS = \\
71 $(AM_CFLAGS) @CPU_AVX2_FLAGS@ \\
72 -DCLIB_MARCH_VARIANT=avx2
73noinst_LTLIBRARIES += lib" plugin-name "_plugin_avx2.la
74" plugin-name "_plugin_la_LIBADD += lib" plugin-name "_plugin_avx2.la
75endif
76
77if CC_SUPPORTS_AVX512
78###############################################################
79# AVX512
80###############################################################
81lib" plugin-name "_plugin_avx512_la_SOURCES = $(" plugin-name "_multiversioning_sources)
82lib" plugin-name "_plugin_avx512_la_CFLAGS = \\
83 $(AM_CFLAGS) @CPU_AVX512_FLAGS@ \\
84 -DCLIB_MARCH_VARIANT=avx512
85noinst_LTLIBRARIES += lib" plugin-name "_plugin_avx512.la
86" plugin-name "_plugin_la_LIBADD += lib" plugin-name "_plugin_avx512.la
87endif
88endif
Dave Barach605c6362017-01-02 12:22:48 -050089")