6rd: Move to plugin
[vpp.git] / plugins / Makefile.am
1 # Copyright (c) 2016 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 -I@TOOLKIT_INCLUDE@
17
18
19 ########################################
20 # SIXRD (RFC5969)
21 ########################################
22 libsixrd_plugin_la_SOURCES = plugins/sixrd/sixrd.c plugins/sixrd/ip4_sixrd.c plugins/sixrd/ip6_sixrd.c
23 nobase_include_HEADERS = plugins/sixrd/sixrd.h
24
25 libsixrd_plugin_la_LDFLAGS = -module
26 BUILT_SOURCES =
27
28 lib_LTLIBRARIES = libsixrd_plugin.la
29
30 if WITH_PLUGIN_TOOLKIT
31 install-data-hook:
32         mkdir /usr/lib/vpp_plugins || true
33         mkdir /usr/lib/vpp_api_test_plugins || true
34         cp $(prefix)/lib/sixrd_plugin.so.*.*.* /usr/lib/vpp_plugins
35 endif