blob: b1fbfeedb35817bfd69a7a981c13650649253d1f [file] [log] [blame]
Neale Ranns812ed392017-10-16 04:20:13 -07001# 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
14AUTOMAKE_OPTIONS = foreign
15ACLOCAL_AMFLAGS = -I m4
16AM_LIBTOOLFLAGS = --quiet
17
Neale Rannsfd920602017-11-23 12:15:00 -080018AM_CXXFLAGS = -Wall -std=gnu++11 -I${top_srcdir} -I${top_builddir}/vpp-api/vapi/ -I$(top_srcdir)/vpp-api/ -I${libdir}/../include -O0
Neale Ranns2ea2e422017-11-07 05:20:16 -080019AM_LDFLAGS = -shared -no-undefined
Neale Ranns812ed392017-10-16 04:20:13 -070020
21bin_PROGRAMS =
22noinst_LTLIBRARIES =
23CLEANDIRS =
24
25lib_LTLIBRARIES = libvom.la
26
27libvom_la_DEPENDENCIES =
28libvom_la_LIBADD = \
29 $(top_builddir)/vpp-api/vapi/libvapiclient.la \
30 -lpthread \
31 -lboost_thread \
32 $(BOOST_SYSTEM_LIB) \
33 $(BOOST_FILESYSTEM_LIB) \
34 $(BOOST_ASIO_LIB) \
35 -lm -lrt
36
37libvom_la_SOURCES = \
Mohsin Kazmi67b1b222017-11-09 11:58:26 +010038 types.cpp \
Neale Ranns812ed392017-10-16 04:20:13 -070039 acl_binding_cmds.cpp \
40 acl_binding.cpp \
41 acl_l2_rule.cpp \
42 acl_l3_rule.cpp \
43 acl_list_cmds.cpp \
44 acl_list.cpp \
45 acl_types.cpp \
46 arp_proxy_binding_cmds.cpp \
47 arp_proxy_binding.cpp \
48 arp_proxy_config_cmds.cpp \
49 arp_proxy_config.cpp \
50 bridge_domain_cmds.cpp \
51 bridge_domain.cpp \
52 bridge_domain_arp_entry.cpp \
53 bridge_domain_arp_entry_cmds.cpp \
54 bridge_domain_entry_cmds.cpp \
55 bridge_domain_entry.cpp \
56 client_db.cpp \
57 cmd.cpp \
58 connection.cpp \
59 dhcp_config_cmds.cpp \
60 dhcp_config.cpp \
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070061 hw_cmds.cpp \
Neale Ranns812ed392017-10-16 04:20:13 -070062 hw.cpp \
63 inspect.cpp \
64 interface_cmds.cpp \
65 interface.cpp \
66 interface_factory.cpp \
67 interface_ip6_nd_cmds.cpp \
68 interface_span_cmds.cpp \
69 interface_span.cpp \
70 interface_types.cpp \
71 ip_unnumbered_cmds.cpp \
72 ip_unnumbered.cpp \
73 l2_binding_cmds.cpp \
74 l2_binding.cpp \
Neale Ranns55d03782017-10-21 06:34:22 -070075 l2_emulation_cmds.cpp \
76 l2_emulation.cpp \
Neale Ranns812ed392017-10-16 04:20:13 -070077 l3_binding_cmds.cpp \
78 l3_binding.cpp \
79 lldp_binding_cmds.cpp \
80 lldp_binding.cpp \
81 lldp_global_cmds.cpp \
82 lldp_global.cpp \
83 logger.cpp \
84 nat_static.cpp \
85 nat_static_cmds.cpp \
86 nat_binding.cpp \
87 nat_binding_cmds.cpp \
88 neighbour.cpp \
89 neighbour_cmds.cpp \
90 object_base.cpp \
91 om.cpp \
92 prefix.cpp \
93 ra_config.cpp \
94 ra_prefix.cpp \
95 route.cpp \
96 route_cmds.cpp \
97 route_domain.cpp \
98 route_domain_cmds.cpp \
99 sub_interface_cmds.cpp \
100 sub_interface.cpp \
101 tap_interface.cpp \
102 tap_interface_cmds.cpp \
Neale Ranns812ed392017-10-16 04:20:13 -0700103 vxlan_tunnel_cmds.cpp \
104 vxlan_tunnel.cpp
105
106vomincludedir = $(includedir)/vom
107
108vominclude_HEADERS = \
109 acl_binding.hpp \
110 acl_l2_rule.hpp \
111 acl_l3_rule.hpp \
112 acl_list.hpp \
113 acl_types.hpp \
114 arp_proxy_binding.hpp \
115 arp_proxy_config.hpp \
116 bridge_domain.hpp \
117 bridge_domain_arp_entry.hpp \
118 bridge_domain_entry.hpp \
119 client_db.hpp \
120 cmd.hpp \
121 connection.hpp \
122 dhcp_config.hpp \
Mohsin Kazmi20ab0a42017-11-07 11:28:40 +0100123 dhcp_config_cmds.hpp \
Neale Ranns812ed392017-10-16 04:20:13 -0700124 dump_cmd.hpp \
125 enum_base.hpp \
126 event_cmd.hpp \
127 hw.hpp \
128 inspect.hpp \
129 interface.hpp \
Mohsin Kazmi20ab0a42017-11-07 11:28:40 +0100130 interface_cmds.hpp \
Neale Ranns812ed392017-10-16 04:20:13 -0700131 interface_ip6_nd.hpp \
132 interface_span.hpp \
133 ip_unnumbered.hpp \
134 l2_binding.hpp \
Neale Ranns55d03782017-10-21 06:34:22 -0700135 l2_emulation.hpp \
Neale Ranns812ed392017-10-16 04:20:13 -0700136 l3_binding.hpp \
137 lldp_binding.hpp \
138 lldp_global.hpp \
139 logger.hpp \
140 nat_static.hpp \
141 nat_binding.hpp \
142 neighbour.hpp \
143 object_base.hpp \
144 om.hpp \
145 prefix.hpp \
146 ra_config.hpp \
147 ra_prefix.hpp \
148 route.hpp \
149 route_domain.hpp \
150 rpc_cmd.hpp \
151 singular_db.hpp \
152 sub_interface.hpp \
153 tap_interface.hpp \
154 types.hpp \
155 vxlan_tunnel.hpp
156
157# vi:syntax=automake