bab1ccb59f2c32db6440c555f253ddceb1f0fc62
[vpp.git] / plugins / acl-plugin / 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
17 AM_LDFLAGS = -module -shared -avoid-version
18
19 vppapitestpluginsdir = ${libdir}/vpp_api_test_plugins
20 vpppluginsdir = ${libdir}/vpp_plugins
21
22 vppapitestplugins_LTLIBRARIES = acl_test_plugin.la
23 vppplugins_LTLIBRARIES = acl_plugin.la
24
25 acl_plugin_la_SOURCES =                         \
26         acl/acl.c                               \
27         acl/node_in.c                           \
28         acl/node_out.c                          \
29         acl/l2sess.c                            \
30         acl/l2sess_node.c                       \
31         acl/l2sess.h                            \
32         acl/acl_plugin.api.h
33
34 BUILT_SOURCES = acl/acl.api.h
35
36 SUFFIXES = .api.h .api
37
38 #
39 # ACL API
40 #
41 %.api.h: %.api
42         mkdir -p $(dir $@) ; \
43         $(CC) $(CPPFLAGS) -E -P -C -x c $^ \
44         | vppapigen --input - --output $@ --show-name $@
45
46 apidir = $(prefix)/acl
47 api_DATA = acl/acl.api
48
49 noinst_HEADERS =                                \
50   acl/acl_all_api_h.h                           \
51   acl/acl_msg_enum.h                            \
52   acl/acl.api.h
53
54 acl_test_plugin_la_SOURCES = acl/acl_test.c acl/acl_plugin.api.h
55
56 # Remove *.la files
57 install-data-hook:
58         @(cd $(vpppluginsdir) && $(RM) $(vppplugins_LTLIBRARIES))
59         @(cd $(vppapitestpluginsdir) && $(RM) $(vppapitestplugins_LTLIBRARIES))
60
61 #
62 # Java code generation
63 #
64 jvpp_registry_root = ../../vpp-api/java
65 jvpp_registry_version = 17.01
66 jacl_jarfile = jvpp-acl-$(PACKAGE_VERSION).jar
67 jvpp_package_dir = io/fd/vpp/jvpp/acl
68 jvpp_root = acl/jvpp
69 jvpp_target_dir = target
70 jvpp_target = $(jvpp_root)/$(jvpp_target_dir)
71 api_file=$(srcdir)/acl/acl.api
72
73 lib_LTLIBRARIES = libjvpp_acl.la
74 libjvpp_acl_la_SOURCES = acl/acl.api.h acl/jvpp_acl.c acl/jvpp/io_fd_vpp_jvpp_acl_JVppAclImpl.h
75 libjvpp_acl_la_LIBADD = -lvlibmemoryclient -lvlibapi -lvppinfra \
76                       -lpthread -lm -lrt -L$(jvpp_registry_root)/.libs -ljvpp_common
77 libjvpp_acl_la_LDFLAGS = -module
78 libjvpp_acl_la_CPPFLAGS = -I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/linux -I../ -I$(srcdir)/../
79
80 BUILT_SOURCES += $(jvpp_root)/io_fd_vpp_jvpp_acl_JVppAclImpl.h
81
82 $(jvpp_root)/io_fd_vpp_jvpp_acl_JVppAclImpl.h: acl.api.json
83         dir=`pwd`;                                              \
84         mkdir -p $(jvpp_target); \
85         mkdir -p $(jvpp_root)/$(jvpp_package_dir);              \
86         cd $(jvpp_root)/$(jvpp_package_dir);                    \
87         mkdir -p types dto future callfacade callback notification test;        \
88         @srcdir@/$(jvpp_registry_root)/jvpp/gen/jvpp_gen.py -i $${dir}/acl.api.json --plugin_name acl;          \
89         cd -;                                                   \
90         mv -f $(jvpp_root)/$(jvpp_package_dir)/jvpp_acl_gen.h $(jvpp_root)/jvpp_acl_gen.h;                                                      \
91         cp $(srcdir)/$(jvpp_root)/$(jvpp_package_dir)/test/*.java $(jvpp_root)/$(jvpp_package_dir)/test/;                               \
92         cd $(jvpp_root);                                \
93         $(JAVAC) -classpath .:$(jvpp_target_dir):../../$(jvpp_registry_root)/jvpp-registry-$(jvpp_registry_version).jar -d $(jvpp_target_dir) $(jvpp_package_dir)/*.java \
94                 $(jvpp_package_dir)/types/*.java \
95                 $(jvpp_package_dir)/dto/*.java \
96                 $(jvpp_package_dir)/callback/*.java \
97                 $(jvpp_package_dir)/notification/*.java \
98                 $(jvpp_package_dir)/future/*.java       \
99                 $(jvpp_package_dir)/callfacade/*.java   \
100                 $(jvpp_package_dir)/test/*.java \
101                 || (echo "acl jvpp compilation failed: $$?"; exit 1);   \
102         $(JAVAH) -classpath .:$(jvpp_target_dir):../../$(jvpp_registry_root)/jvpp-registry-$(jvpp_registry_version).jar -d . io.fd.vpp.jvpp.acl.JVppAclImpl ;
103
104 $(jacl_jarfile): libjvpp_acl.la
105         cp .libs/libjvpp_acl.so.0.0.0 $(jvpp_target);                           \
106         cd $(jvpp_target);                              \
107         $(JAR) cfv $(JARFLAGS) ../../../$@ libjvpp_acl.so.0.0.0 $(jvpp_package_dir)/* ; cd ..;
108
109 acl.api.json:
110         @echo "  jAcl_sfc API"; \
111         vppapigen --input $(api_file) --json acl.api.json;
112
113 all-local: $(jacl_jarfile)