Plugins: Clean up the plugin directory so that each plugin has its own
[vpp.git] / plugins / sixrd-plugin / Makefile.am
1 # Copyright (c) 2015 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 libsixrd_plugin_la_SOURCES =                    \
19         sixrd/sixrd.c                           \
20         sixrd/ip4_sixrd.c                       \
21         sixrd/ip6_sixrd.c
22
23 nobase_include_HEADERS =                        \
24         sixrd/sixrd.h
25
26 libsixrd_plugin_la_LDFLAGS = -module
27
28 BUILT_SOURCES =
29
30 lib_LTLIBRARIES = libsixrd_plugin.la
31
32 if WITH_PLUGIN_TOOLKIT
33 install-data-hook:
34         mkdir /usr/lib/vpp_plugins || true
35         mkdir /usr/lib/vpp_api_test_plugins || true
36         cp -L $(prefix)/lib/libsixrd_plugin.so /usr/lib/vpp_plugins
37 endif