Move java,lua api and remaining plugins to src/
[vpp.git] / build-data / platforms.mk
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 # Pick up per-platform makefile fragments
15 $(foreach d,$(SOURCE_PATH_BUILD_DATA_DIRS),     \
16   $(eval -include $(d)/platforms/*.mk))
17
18 .PHONY: install-deb
19 install-deb: $(patsubst %,%-find-source,$(ROOT_PACKAGES))
20         @$(BUILD_ENV) ;                                                 \
21         set -eu$(BUILD_DEBUG) ;                                         \
22         $(MAKE) -C $(MU_BUILD_ROOT_DIR)                                 \
23             $(patsubst %,%-install,                                     \
24               $(ROOT_PACKAGES)) || exit 1;                              \
25                                                                         \
26         : generate file manifests ;                                     \
27         find $(INSTALL_PREFIX)$(ARCH)/*/bin -type f -print              \
28           | sed -e 's:.*:../& /usr/bin:' | grep -v vppapigen            \
29             > deb/debian/vpp.install ;                                  \
30                                                                         \
31         : core api definitions ;                                        \
32         ./scripts/find-api-core-contents $(INSTALL_PREFIX)$(ARCH)       \
33          deb/debian/vpp.install ;                                       \
34                                                                         \
35         : need symbolic links in the lib pkg ;                          \
36         find $(INSTALL_PREFIX)$(ARCH)/*/lib* \( -type f -o  -type l \)  \
37           -print | egrep -e '*\.so\.*\.*\.*'                            \
38           | grep -v plugins\/                                           \
39           | sed -e 's:.*:../& /usr/lib/x86_64-linux-gnu:'               \
40             > deb/debian/vpp-lib.install ;                              \
41                                                                         \
42         : vnet api definitions ;                                        \
43         ./scripts/find-api-lib-contents $(INSTALL_PREFIX)$(ARCH)        \
44          deb/debian/vpp-lib.install ;                                   \
45                                                                         \
46         : dev package ;                                                 \
47         ./scripts/find-dev-contents $(INSTALL_PREFIX)$(ARCH)            \
48          deb/debian/vpp-dev.install ;                                   \
49                                                                         \
50         : plugins package ;                                             \
51         ./scripts/find-plugins-contents $(INSTALL_PREFIX)$(ARCH)        \
52          deb/debian/vpp-plugins.install ;                               \
53                                                                         \
54         : vpp-api-lua package ;                                         \
55         ./scripts/find-vpp-api-lua-contents $(INSTALL_PREFIX)$(ARCH)    \
56          deb/debian/vpp-api-lua.install ;                               \
57                                                                         \
58         : vpp-api-java package ;                                        \
59         ./scripts/find-vpp-api-java-contents $(INSTALL_PREFIX)$(ARCH)   \
60          deb/debian/vpp-api-java.install ;                              \
61                                                                         \
62         : vpp-api-python package ;                                      \
63         ./scripts/find-vpp-api-python-contents $(INSTALL_PREFIX)$(ARCH) \
64          deb/debian/vpp-api-python.install ;                            \
65                                                                         \
66         : dpdk headers ;                                                \
67         ./scripts/find-dpdk-contents $(INSTALL_PREFIX)$(ARCH)           \
68          deb/debian/vpp-dpdk-dev.install ;                              \
69                                                                         \
70         : bin package needs startup config ;                            \
71         echo ../../src/vpp/conf/startup.conf /etc/vpp                   \
72            >> deb/debian/vpp.install ;                                  \
73                                                                         \
74         : and sysctl config ;                                           \
75         echo ../../src/vpp/conf/80-vpp.conf /etc/sysctl.d               \
76            >> deb/debian/vpp.install ;                                  \
77                                                                         \
78         : dev package needs a couple of additions ;                     \
79         echo ../build-tool-native/tools/vppapigen /usr/bin              \
80            >> deb/debian/vpp-dev.install ;                              \
81         echo ../../src/vpp-api/java/jvpp/gen/jvpp_gen.py /usr/bin       \
82            >> deb/debian/vpp-dev.install ;                              \
83         for i in $$(ls ../src/vpp-api/java/jvpp/gen/jvppgen/*.py); do   \
84            echo ../$${i} /usr/lib/python2.7/dist-packages/jvppgen       \
85                >> deb/debian/vpp-dev.install;                           \
86         done;                                                           \
87                                                                         \
88         : generate changelog;                                           \
89         ./scripts/generate-deb-changelog                                \
90                                                                         \
91         : Go fabricate the actual Debian packages ;                     \
92         (                                                               \
93         cd deb &&                                                       \
94         dpkg-buildpackage -us -uc -b                                    \
95         )
96
97 .PHONY: install-rpm
98 install-rpm: $(patsubst %,%-find-source,$(ROOT_PACKAGES))
99         @$(BUILD_ENV) ;                                                 \
100         set -eu$(BUILD_DEBUG) ;                                         \
101         $(MAKE) -C $(MU_BUILD_ROOT_DIR)                                 \
102             $(patsubst %,%-install,                                     \
103               $(ROOT_PACKAGES)) || exit 1;                              \
104                                                                         \
105         cd rpm ;                                                        \
106         mkdir -p SOURCES ;                                              \
107         if test -f *.tar.gz ; then mv *.tar.gz SOURCES ; fi ;           \
108         rpmbuild -bb --define "_topdir $$PWD" --define                  \
109                 "_install_dir $(INSTALL_PREFIX)$(ARCH)"                 \
110                 --define "_mu_build_root_dir $(MU_BUILD_ROOT_DIR)"      \
111                 vpp.spec ;                                              \
112         mv $$(find RPMS -name \*.rpm -type f) ..
113