VOM: ACL: Add Object Model for acl ethertype
[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 AM_CXXFLAGS = -Wall -Werror -std=gnu++11 -I${top_srcdir} -I${top_builddir}/vpp-api/vapi/ -I$(top_srcdir)/vpp-api/ -I${libdir}/../include
19
20 bin_PROGRAMS =
21 noinst_LTLIBRARIES =
22 CLEANDIRS =
23
24 lib_LTLIBRARIES = libvom.la
25
26 libvom_la_DEPENDENCIES =
27 libvom_la_LIBADD =                                      \
28         $(top_builddir)/vpp-api/vapi/libvapiclient.la   \
29         -lpthread                                       \
30         -lboost_thread                                  \
31         $(BOOST_SYSTEM_LIB)                             \
32         $(BOOST_FILESYSTEM_LIB)                         \
33         $(BOOST_ASIO_LIB)                               \
34         -lm -lrt
35
36 libvom_la_SOURCES =                     \
37         types.cpp                       \
38         acl_binding_cmds.cpp            \
39         acl_binding.cpp                 \
40         acl_ethertype_cmds.cpp          \
41         acl_ethertype.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         gbp_endpoint_cmds.cpp           \
63         gbp_endpoint.cpp                \
64         gbp_contract_cmds.cpp           \
65         gbp_contract.cpp                \
66         hw_cmds.cpp                     \
67         hw.cpp                          \
68         inspect.cpp                     \
69         interface_cmds.cpp              \
70         interface.cpp                   \
71         interface_factory.cpp           \
72         interface_ip6_nd_cmds.cpp       \
73         interface_span_cmds.cpp         \
74         interface_span.cpp              \
75         interface_types.cpp             \
76         ip_unnumbered_cmds.cpp          \
77         ip_unnumbered.cpp               \
78         l2_binding_cmds.cpp             \
79         l2_binding.cpp                  \
80         l2_emulation_cmds.cpp           \
81         l2_emulation.cpp                \
82         l3_binding_cmds.cpp             \
83         l3_binding.cpp                  \
84         lldp_binding_cmds.cpp           \
85         lldp_binding.cpp                \
86         lldp_global_cmds.cpp            \
87         lldp_global.cpp                 \
88         logger.cpp                      \
89         nat_static.cpp                  \
90         nat_static_cmds.cpp             \
91         nat_binding.cpp                 \
92         nat_binding_cmds.cpp            \
93         neighbour.cpp                   \
94         neighbour_cmds.cpp              \
95         object_base.cpp                 \
96         om.cpp                          \
97         prefix.cpp                      \
98         ra_config.cpp                   \
99         ra_prefix.cpp                   \
100         route.cpp                       \
101         route_cmds.cpp                  \
102         route_domain.cpp                \
103         route_domain_cmds.cpp           \
104         sub_interface_cmds.cpp          \
105         sub_interface.cpp               \
106         tap_interface.cpp               \
107         tap_interface_cmds.cpp          \
108         vxlan_tunnel_cmds.cpp           \
109         vxlan_tunnel.cpp
110
111 vomincludedir = $(includedir)/vom
112
113 vominclude_HEADERS =                    \
114         acl_binding.hpp                 \
115         acl_ethertype.hpp               \
116         acl_l2_rule.hpp                 \
117         acl_l3_rule.hpp                 \
118         acl_list.hpp                    \
119         acl_types.hpp                   \
120         arp_proxy_binding.hpp           \
121         arp_proxy_config.hpp            \
122         bridge_domain.hpp               \
123         bridge_domain_arp_entry.hpp     \
124         bridge_domain_entry.hpp         \
125         client_db.hpp                   \
126         cmd.hpp                         \
127         connection.hpp                  \
128         dhcp_config.hpp                 \
129         dhcp_config_cmds.hpp            \
130         dump_cmd.hpp                    \
131         enum_base.hpp                   \
132         event_cmd.hpp                   \
133         gbp_endpoint.hpp                \
134         gbp_contract.hpp                \
135         hw.hpp                          \
136         inspect.hpp                     \
137         interface.hpp                   \
138         interface_cmds.hpp              \
139         interface_ip6_nd.hpp            \
140         interface_span.hpp              \
141         ip_unnumbered.hpp               \
142         l2_binding.hpp                  \
143         l2_emulation.hpp                \
144         l3_binding.hpp                  \
145         lldp_binding.hpp                \
146         lldp_global.hpp                 \
147         logger.hpp                      \
148         nat_static.hpp                  \
149         nat_binding.hpp                 \
150         neighbour.hpp                   \
151         object_base.hpp                 \
152         om.hpp                          \
153         prefix.hpp                      \
154         ra_config.hpp                   \
155         ra_prefix.hpp                   \
156         route.hpp                       \
157         route_domain.hpp                \
158         rpc_cmd.hpp                     \
159         singular_db.hpp                 \
160         sub_interface.hpp               \
161         tap_interface.hpp               \
162         types.hpp                       \
163         vxlan_tunnel.hpp
164
165 # vi:syntax=automake