0d60faa3252f62a0a2d72590057b6583e4d3b307
[vpp.git] / src / vpp-api / vom / Makefile.am
1 # Copyright (c) 2017 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
15 ACLOCAL_AMFLAGS = -I m4
16 AM_LIBTOOLFLAGS = --quiet
17
18 CXXFLAGS = ${CFLAGS}
19 AM_CXXFLAGS = ${CXXFLAGS} -Wall -Werror -std=gnu++11 -I${top_srcdir} -I${top_builddir}/vpp-api/vapi/ -I$(top_srcdir)/vpp-api/ -I${libdir}/../include
20 AM_LDFLAGS = -shared -no-undefined
21
22 bin_PROGRAMS =
23 noinst_LTLIBRARIES =
24 CLEANDIRS =
25
26 lib_LTLIBRARIES = libvom.la
27
28 libvom_la_DEPENDENCIES =
29 libvom_la_LIBADD =                                      \
30         $(top_builddir)/vpp-api/vapi/libvapiclient.la   \
31         -lpthread                                       \
32         -lboost_thread                                  \
33         $(BOOST_SYSTEM_LIB)                             \
34         $(BOOST_FILESYSTEM_LIB)                         \
35         $(BOOST_ASIO_LIB)                               \
36         -lm -lrt
37
38 libvom_la_SOURCES =                     \
39         types.cpp                       \
40         acl_binding_cmds.cpp            \
41         acl_binding.cpp                 \
42         acl_l2_rule.cpp                 \
43         acl_l3_rule.cpp                 \
44         acl_list_cmds.cpp               \
45         acl_list.cpp                    \
46         acl_types.cpp                   \
47         arp_proxy_binding_cmds.cpp      \
48         arp_proxy_binding.cpp           \
49         arp_proxy_config_cmds.cpp       \
50         arp_proxy_config.cpp            \
51         bridge_domain_cmds.cpp          \
52         bridge_domain.cpp               \
53         bridge_domain_arp_entry.cpp     \
54         bridge_domain_arp_entry_cmds.cpp \
55         bridge_domain_entry_cmds.cpp    \
56         bridge_domain_entry.cpp         \
57         client_db.cpp                   \
58         cmd.cpp                         \
59         connection.cpp                  \
60         dhcp_config_cmds.cpp            \
61         dhcp_config.cpp                 \
62         hw_cmds.cpp                     \
63         hw.cpp                          \
64         inspect.cpp                     \
65         interface_cmds.cpp              \
66         interface.cpp                   \
67         interface_factory.cpp           \
68         interface_ip6_nd_cmds.cpp       \
69         interface_span_cmds.cpp         \
70         interface_span.cpp              \
71         interface_types.cpp             \
72         ip_unnumbered_cmds.cpp          \
73         ip_unnumbered.cpp               \
74         l2_binding_cmds.cpp             \
75         l2_binding.cpp                  \
76         l2_emulation_cmds.cpp           \
77         l2_emulation.cpp                \
78         l3_binding_cmds.cpp             \
79         l3_binding.cpp                  \
80         lldp_binding_cmds.cpp           \
81         lldp_binding.cpp                \
82         lldp_global_cmds.cpp            \
83         lldp_global.cpp                 \
84         logger.cpp                      \
85         nat_static.cpp                  \
86         nat_static_cmds.cpp             \
87         nat_binding.cpp                 \
88         nat_binding_cmds.cpp            \
89         neighbour.cpp                   \
90         neighbour_cmds.cpp              \
91         object_base.cpp                 \
92         om.cpp                          \
93         prefix.cpp                      \
94         ra_config.cpp                   \
95         ra_prefix.cpp                   \
96         route.cpp                       \
97         route_cmds.cpp                  \
98         route_domain.cpp                \
99         route_domain_cmds.cpp           \
100         sub_interface_cmds.cpp          \
101         sub_interface.cpp               \
102         tap_interface.cpp               \
103         tap_interface_cmds.cpp          \
104         vxlan_tunnel_cmds.cpp           \
105         vxlan_tunnel.cpp
106
107 vomincludedir = $(includedir)/vom
108
109 vominclude_HEADERS =                    \
110         acl_binding.hpp                 \
111         acl_l2_rule.hpp                 \
112         acl_l3_rule.hpp                 \
113         acl_list.hpp                    \
114         acl_types.hpp                   \
115         arp_proxy_binding.hpp           \
116         arp_proxy_config.hpp            \
117         bridge_domain.hpp               \
118         bridge_domain_arp_entry.hpp     \
119         bridge_domain_entry.hpp         \
120         client_db.hpp                   \
121         cmd.hpp                         \
122         connection.hpp                  \
123         dhcp_config.hpp                 \
124         dhcp_config_cmds.hpp            \
125         dump_cmd.hpp                    \
126         enum_base.hpp                   \
127         event_cmd.hpp                   \
128         hw.hpp                          \
129         inspect.hpp                     \
130         interface.hpp                   \
131         interface_cmds.hpp              \
132         interface_ip6_nd.hpp            \
133         interface_span.hpp              \
134         ip_unnumbered.hpp               \
135         l2_binding.hpp                  \
136         l2_emulation.hpp                \
137         l3_binding.hpp                  \
138         lldp_binding.hpp                \
139         lldp_global.hpp                 \
140         logger.hpp                      \
141         nat_static.hpp                  \
142         nat_binding.hpp                 \
143         neighbour.hpp                   \
144         object_base.hpp                 \
145         om.hpp                          \
146         prefix.hpp                      \
147         ra_config.hpp                   \
148         ra_prefix.hpp                   \
149         route.hpp                       \
150         route_domain.hpp                \
151         rpc_cmd.hpp                     \
152         singular_db.hpp                 \
153         sub_interface.hpp               \
154         tap_interface.hpp               \
155         types.hpp                       \
156         vxlan_tunnel.hpp
157
158 # vi:syntax=automake