Repair Doxygen build infrastructure
[vpp.git] / plugins / lb-plugin / Makefile.am
1 # Copyright (c) 2016 Cisco Systems, Inc.
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
17 AM_LDFLAGS = -module -shared -avoid-version
18
19 vppapitestpluginsdir = ${libdir}/vpp_api_test_plugins
20 vpppluginsdir = ${libdir}/vpp_plugins
21
22 vppapitestplugins_LTLIBRARIES = lb_test_plugin.la
23 vppplugins_LTLIBRARIES = lb_plugin.la
24
25 lb_plugin_la_SOURCES = lb/lb.c lb/node.c lb/cli.c lb/util.c lb/refcount.c lb/api.c
26
27 BUILT_SOURCES =                                 \
28         lb/lb.api.h             \
29         lb/lb.api.json
30
31 SUFFIXES = .api.h .api .api.json
32
33 %.api.h: %.api
34         mkdir -p `dirname $@` ; \
35         $(CC) $(CPPFLAGS) -E -P -C -x c $^ \
36         | vppapigen --input - --output $@ --show-name $@
37
38 %.api.json: %.api
39         @echo "  JSON APIGEN  " $@ ;                            \
40         mkdir -p `dirname $@` ;                                 \
41         $(CC) $(CPPFLAGS) -E -P -C -x c $^                      \
42         | vppapigen --input - --json $@
43
44 apidir = $(prefix)/lb/
45 api_DATA = lb/lb.api.json
46
47 noinst_HEADERS = lb/lb.h lb/util.h lb/refcount.h  lb/lbhash.h lb/lb.api.h
48
49 lb_test_plugin_la_SOURCES = \
50   lb/lb_test.c lb/lb_plugin.api.h
51
52 # Remove *.la files
53 install-data-hook:
54         @(cd $(vpppluginsdir) && $(RM) $(vppplugins_LTLIBRARIES))
55         @(cd $(vppapitestpluginsdir) && $(RM) $(vppapitestplugins_LTLIBRARIES))