dpdk: Add support for Mellanox ConnectX-4 devices
[vpp.git] / plugins / flowperpkt-plugin / Makefile.am
1
2 # Copyright (c) <current-year> <your-organization>
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at:
6 #
7 #     http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 AUTOMAKE_OPTIONS = foreign subdir-objects
16
17 AM_CFLAGS = -Wall
18 AM_LDFLAGS = -module -shared -avoid-version
19
20 vppapitestpluginsdir = ${libdir}/vpp_api_test_plugins
21 vpppluginsdir = ${libdir}/vpp_plugins
22
23 vppplugins_LTLIBRARIES = flowperpkt_plugin.la
24 vppapitestplugins_LTLIBRARIES = flowperpkt_test_plugin.la
25
26 flowperpkt_plugin_la_SOURCES = flowperpkt/flowperpkt.c  \
27         flowperpkt/l2_node.c \
28         flowperpkt/node.c \
29         flowperpkt/flowperpkt_plugin.api.h
30 flowperpkt_plugin_la_LDFLAGS = -module
31
32 BUILT_SOURCES =                                 \
33         flowperpkt/flowperpkt.api.h             \
34         flowperpkt/flowperpkt.api.json
35
36 SUFFIXES = .api.h .api .api.json
37
38 %.api.h: %.api
39         mkdir -p `dirname $@` ; \
40         $(CC) $(CPPFLAGS) -E -P -C -x c $^ \
41         | vppapigen --input - --output $@ --show-name $@
42
43 %.api.json: %.api
44         @echo "  JSON APIGEN  " $@ ;                            \
45         mkdir -p `dirname $@` ;                                 \
46         $(CC) $(CPPFLAGS) -E -P -C -x c $^                      \
47         | vppapigen --input - --json $@
48
49 apidir = $(prefix)/flowperpkt/
50 api_DATA = flowperpkt/flowperpkt.api.json
51
52 noinst_HEADERS =                        \
53   flowperpkt/flowperpkt_all_api_h.h                     \
54   flowperpkt/flowperpkt_msg_enum.h                      \
55   flowperpkt/flowperpkt.api.h
56
57 flowperpkt_test_plugin_la_SOURCES = \
58   flowperpkt/flowperpkt_test.c flowperpkt/flowperpkt_plugin.api.h
59
60 # Remove *.la files
61 install-data-hook:
62         @(cd $(vpppluginsdir) && $(RM) $(vppplugins_LTLIBRARIES))
63         @(cd $(vppapitestpluginsdir) && $(RM) $(vppapitestplugins_LTLIBRARIES))
64