blob: 2b47717b7a2bb9657b9b34c8d74e095047fa56ad [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001# Copyright (c) 2015 Cisco and/or its affiliates.
2# Licensed under the Apache License, Version 2.0 (the "License");
3# you may not use this file except in compliance with the License.
4# You may obtain a copy of the License at:
5#
6# http://www.apache.org/licenses/LICENSE-2.0
7#
8# Unless required by applicable law or agreed to in writing, software
9# distributed under the License is distributed on an "AS IS" BASIS,
10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11# See the License for the specific language governing permissions and
12# limitations under the License.
13
14AUTOMAKE_OPTIONS = foreign subdir-objects
15
16AM_CFLAGS = -Wall -I@TOOLKIT_INCLUDE@
17
18lib_LTLIBRARIES = sample_plugin.la sample_test_plugin.la
19sample_plugin_la_SOURCES = sample/sample.c sample/node.c \
20 sample/sample_plugin.api.h
21sample_plugin_la_LDFLAGS = -module
22
23BUILT_SOURCES = sample/sample.api.h
24
25SUFFIXES = .api.h .api
26
27%.api.h: %.api
28 mkdir -p `dirname $@` ; \
29 $(CC) $(CPPFLAGS) -E -P -C -x c $^ \
30 | vppapigen --input - --output $@ --show-name $@
31
32nobase_include_HEADERS = \
33 sample/sample_all_api_h.h \
34 sample/sample_msg_enum.h \
35 sample/sample.api.h
36
37sample_test_plugin_la_SOURCES = sample/sample_test.c sample/sample_plugin.api.h
38sample_test_plugin_la_LDFLAGS = -module
39
40if WITH_PLUGIN_TOOLKIT
41install-data-hook:
42 mkdir /usr/lib/vpp_plugins || true
43 mkdir /usr/lib/vpp_api_test_plugins || true
44 cp $(prefix)/lib/sample_plugin.so.*.*.* /usr/lib/vpp_plugins
45 cp $(prefix)/lib/sample_test_plugin.so.*.*.* \
46 /usr/lib/vpp_api_test_plugins
47endif