blob: 57ddb84b07b148260f5308a349e17e91422c4447 [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
18AM_CXXFLAGS = -Wall -std=gnu++11 -I${top_srcdir} -I${top_builddir}/vpp-api/vapi/ -I$(top_srcdir)/vpp-api/ -I${libdir}/../include
19AM_LDFLAGS = -shared -avoid-version -no-undefined
20
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 = \
38 acl_binding_cmds.cpp \
39 acl_binding.cpp \
40 acl_l2_rule.cpp \
41 acl_l3_rule.cpp \
42 acl_list_cmds.cpp \
43 acl_list.cpp \
44 acl_types.cpp \
45 arp_proxy_binding_cmds.cpp \
46 arp_proxy_binding.cpp \
47 arp_proxy_config_cmds.cpp \
48 arp_proxy_config.cpp \
49 bridge_domain_cmds.cpp \
50 bridge_domain.cpp \
51 bridge_domain_arp_entry.cpp \
52 bridge_domain_arp_entry_cmds.cpp \
53 bridge_domain_entry_cmds.cpp \
54 bridge_domain_entry.cpp \
55 client_db.cpp \
56 cmd.cpp \
57 connection.cpp \
58 dhcp_config_cmds.cpp \
59 dhcp_config.cpp \
Neale Ranns9ef1c0a2017-11-03 04:39:05 -070060 hw_cmds.cpp \
Neale Ranns812ed392017-10-16 04:20:13 -070061 hw.cpp \
62 inspect.cpp \
63 interface_cmds.cpp \
64 interface.cpp \
65 interface_factory.cpp \
66 interface_ip6_nd_cmds.cpp \
67 interface_span_cmds.cpp \
68 interface_span.cpp \
69 interface_types.cpp \
70 ip_unnumbered_cmds.cpp \
71 ip_unnumbered.cpp \
72 l2_binding_cmds.cpp \
73 l2_binding.cpp \
74 l3_binding_cmds.cpp \
75 l3_binding.cpp \
76 lldp_binding_cmds.cpp \
77 lldp_binding.cpp \
78 lldp_global_cmds.cpp \
79 lldp_global.cpp \
80 logger.cpp \
81 nat_static.cpp \
82 nat_static_cmds.cpp \
83 nat_binding.cpp \
84 nat_binding_cmds.cpp \
85 neighbour.cpp \
86 neighbour_cmds.cpp \
87 object_base.cpp \
88 om.cpp \
89 prefix.cpp \
90 ra_config.cpp \
91 ra_prefix.cpp \
92 route.cpp \
93 route_cmds.cpp \
94 route_domain.cpp \
95 route_domain_cmds.cpp \
96 sub_interface_cmds.cpp \
97 sub_interface.cpp \
98 tap_interface.cpp \
99 tap_interface_cmds.cpp \
100 types.cpp \
101 vxlan_tunnel_cmds.cpp \
102 vxlan_tunnel.cpp
103
104vomincludedir = $(includedir)/vom
105
106vominclude_HEADERS = \
107 acl_binding.hpp \
108 acl_l2_rule.hpp \
109 acl_l3_rule.hpp \
110 acl_list.hpp \
111 acl_types.hpp \
112 arp_proxy_binding.hpp \
113 arp_proxy_config.hpp \
114 bridge_domain.hpp \
115 bridge_domain_arp_entry.hpp \
116 bridge_domain_entry.hpp \
117 client_db.hpp \
118 cmd.hpp \
119 connection.hpp \
120 dhcp_config.hpp \
121 dump_cmd.hpp \
122 enum_base.hpp \
123 event_cmd.hpp \
124 hw.hpp \
125 inspect.hpp \
126 interface.hpp \
127 interface_ip6_nd.hpp \
128 interface_span.hpp \
129 ip_unnumbered.hpp \
130 l2_binding.hpp \
131 l3_binding.hpp \
132 lldp_binding.hpp \
133 lldp_global.hpp \
134 logger.hpp \
135 nat_static.hpp \
136 nat_binding.hpp \
137 neighbour.hpp \
138 object_base.hpp \
139 om.hpp \
140 prefix.hpp \
141 ra_config.hpp \
142 ra_prefix.hpp \
143 route.hpp \
144 route_domain.hpp \
145 rpc_cmd.hpp \
146 singular_db.hpp \
147 sub_interface.hpp \
148 tap_interface.hpp \
149 types.hpp \
150 vxlan_tunnel.hpp
151
152# vi:syntax=automake