Plugins: Clean up the plugin directory so that each plugin has its own
[vpp.git] / plugins / ioam-plugin / Makefile.am
1 # 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
14 AUTOMAKE_OPTIONS = foreign subdir-objects
15
16 AM_CFLAGS = -Wall -I@TOOLKIT_INCLUDE@
17
18 ########################################
19 # iOAM Proof of Transit
20 ########################################
21
22 ioam_pot_plugin_la_SOURCES =                    \
23         ioam/lib-pot/pot_util.c                 \
24         ioam/encap/ip6_ioam_pot.c               \
25         ioam/lib-pot/pot_util.h                 \
26         ioam/lib-pot/math64.h                   \
27         ioam/lib-pot/pot_api.c
28
29 ioam_pot_plugin_la_LDFLAGS = -module
30
31 BUILT_SOURCES =                                 \
32         ioam/lib-pot/pot.api.h
33
34 SUFFIXES = .api.h .api
35
36 %.api.h: %.api
37         mkdir -p `dirname $@` ; \
38         $(CC) $(CPPFLAGS) -E -P -C -x c $^ \
39         | vppapigen --input - --output $@ --show-name $@
40
41 nobase_include_HEADERS =                        \
42   ioam/lib-pot/pot_all_api_h.h                  \
43   ioam/lib-pot/pot_msg_enum.h                   \
44   ioam/lib-pot/pot.api.h                        \
45   ioam/lib-pot/pot_util.h                       \
46   ioam/lib-pot/math64.h
47
48 ioam_pot_test_plugin_la_SOURCES =               \
49         ioam/lib-pot/pot_test.c                 \
50         ioam/lib-pot/pot_plugin.api.h
51
52 ioam_pot_test_plugin_la_LDFLAGS = -module
53
54 lib_LTLIBRARIES = ioam_pot_plugin.la ioam_pot_test_plugin.la
55
56 if WITH_PLUGIN_TOOLKIT
57 install-data-hook:
58         mkdir /usr/lib/vpp_plugins || true
59         mkdir /usr/lib/vpp_api_test_plugins || true
60         cp -L $(prefix)/lib/ioam_pot_plugin.so /usr/lib/vpp_plugins
61         cp -L $(prefix)/lib/ioam_pot_test_plugin.so /usr/lib/vpp_api_test_plugins
62 endif