VPP-323: Add LISP locator set index to reply API message
[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
17 AM_LDFLAGS = -module -shared -avoid-version
18
19 ########################################
20 # iOAM Proof of Transit
21 ########################################
22
23 ioam_pot_plugin_la_SOURCES =                    \
24         ioam/lib-pot/pot_util.c                 \
25         ioam/encap/ip6_ioam_pot.c               \
26         ioam/lib-pot/pot_util.h                 \
27         ioam/lib-pot/math64.h                   \
28         ioam/lib-pot/pot_api.c
29
30 BUILT_SOURCES =                                 \
31         ioam/lib-pot/pot.api.h
32
33 SUFFIXES = .api.h .api
34
35 %.api.h: %.api
36         mkdir -p `dirname $@` ; \
37         $(CC) $(CPPFLAGS) -E -P -C -x c $^ \
38         | vppapigen --input - --output $@ --show-name $@
39
40 noinst_HEADERS =                                \
41   ioam/lib-pot/pot_all_api_h.h                  \
42   ioam/lib-pot/pot_msg_enum.h                   \
43   ioam/lib-pot/pot.api.h                        \
44   ioam/lib-pot/pot_util.h                       \
45   ioam/lib-pot/math64.h
46
47 ioam_pot_test_plugin_la_SOURCES =               \
48         ioam/lib-pot/pot_test.c                 \
49         ioam/lib-pot/pot_plugin.api.h
50
51 vppapitestpluginsdir = ${libdir}/vpp_api_test_plugins
52 vpppluginsdir = ${libdir}/vpp_plugins
53
54 vppapitestplugins_LTLIBRARIES = ioam_pot_test_plugin.la
55 vppplugins_LTLIBRARIES = ioam_pot_plugin.la
56
57 ########################################
58 # iOAM trace export
59 ########################################
60
61 ioam_export_plugin_la_SOURCES =   \
62 ioam/export/ioam_export.c         \
63 ioam/export/node.c                \
64 ioam/export/ioam_export.api.h     \
65 ioam/export/ioam_export_thread.c
66
67 BUILT_SOURCES += ioam/export/ioam_export.api.h
68
69 noinst_HEADERS +=                       \
70   ioam/export/ioam_export_all_api_h.h   \
71   ioam/export/ioam_export_msg_enum.h    \
72   ioam/export/ioam_export.api.h
73
74 ioam_export_test_plugin_la_SOURCES =  \
75   ioam/export/ioam_export_test.c      \
76   ioam/export/ioam_export_plugin.api.h
77
78 vppapitestplugins_LTLIBRARIES += ioam_export_test_plugin.la
79 vppplugins_LTLIBRARIES += ioam_export_plugin.la
80
81
82 # Remove *.la files
83 install-data-hook:
84         @(cd $(vpppluginsdir) && $(RM) $(vppplugins_LTLIBRARIES))
85         @(cd $(vppapitestpluginsdir) && $(RM) $(vppapitestplugins_LTLIBRARIES))