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