VPP-466: PG pg_create_interface API returns wrong interface index
[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 ioam/lib-pot/pot.py
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 %.py: %.api
41         $(info Creating Python binding for $@)
42         $(CC) $(CPPFLAGS) -E -P -C -x c $<                              \
43         | vppapigen --input - --python -                                \
44         | pyvppapigen.py --input - > $@
45
46 pyapidir = ${prefix}/vpp_papi_plugins
47 pyapi_DATA = ioam/lib-pot/pot.py
48
49 noinst_HEADERS =                                \
50   ioam/lib-pot/pot_all_api_h.h                  \
51   ioam/lib-pot/pot_msg_enum.h                   \
52   ioam/lib-pot/pot.api.h                        \
53   ioam/lib-pot/pot_util.h                       \
54   ioam/lib-pot/math64.h
55
56 ioam_pot_test_plugin_la_SOURCES =               \
57         ioam/lib-pot/pot_test.c                 \
58         ioam/lib-pot/pot_plugin.api.h
59
60 vppapitestpluginsdir = ${libdir}/vpp_api_test_plugins
61 vpppluginsdir = ${libdir}/vpp_plugins
62
63 vppapitestplugins_LTLIBRARIES = ioam_pot_test_plugin.la
64 vppplugins_LTLIBRARIES = ioam_pot_plugin.la
65
66 ########################################
67 # iOAM trace export
68 ########################################
69
70 ioam_export_plugin_la_SOURCES =   \
71 ioam/export/ioam_export.c         \
72 ioam/export/node.c                \
73 ioam/export/ioam_export.api.h     \
74 ioam/export/ioam_export_thread.c
75
76 BUILT_SOURCES += ioam/export/ioam_export.api.h
77
78 noinst_HEADERS +=                       \
79   ioam/export/ioam_export_all_api_h.h   \
80   ioam/export/ioam_export_msg_enum.h    \
81   ioam/export/ioam_export.api.h
82
83 ioam_export_test_plugin_la_SOURCES =  \
84   ioam/export/ioam_export_test.c      \
85   ioam/export/ioam_export_plugin.api.h
86
87 vppapitestplugins_LTLIBRARIES += ioam_export_test_plugin.la
88 vppplugins_LTLIBRARIES += ioam_export_plugin.la
89
90 ########################################
91 # iOAM Trace
92 ########################################
93 ioam_trace_plugin_la_SOURCES =                  \
94         ioam/lib-trace/trace_util.c                     \
95         ioam/encap/ip6_ioam_trace.c             \
96         ioam/lib-trace/trace_util.h                     \
97         ioam/lib-trace/trace_api.c
98
99 BUILT_SOURCES +=                                        \
100         ioam/lib-trace/trace.api.h ioam/lib-trace/trace.py
101
102 pyapi_DATA += ioam/lib-trace/trace.py
103
104 noinst_HEADERS +=                       \
105   ioam/export/ioam_export_all_api_h.h   \
106   ioam/lib-trace/trace_all_api_h.h                      \
107   ioam/lib-trace/trace_msg_enum.h                       \
108   ioam/lib-trace/trace.api.h                    \
109   ioam/lib-trace/trace_util.h
110
111 ioam_trace_test_plugin_la_SOURCES =             \
112         ioam/lib-trace/trace_test.c                     \
113         ioam/lib-trace/trace_plugin.api.h
114
115 vppapitestplugins_LTLIBRARIES += ioam_trace_test_plugin.la
116 vppplugins_LTLIBRARIES += ioam_trace_plugin.la
117
118
119
120 # Remove *.la files
121 install-data-hook:
122         @(cd $(vpppluginsdir) && $(RM) $(vppplugins_LTLIBRARIES))
123         @(cd $(vppapitestpluginsdir) && $(RM) $(vppapitestplugins_LTLIBRARIES))