Reorganize source tree to use single autotools instance
[vpp.git] / build-data / platforms.mk
index 988be14..88dd3ed 100644 (file)
@@ -27,30 +27,55 @@ install-deb: $(patsubst %,%-find-source,$(ROOT_PACKAGES))
        find $(INSTALL_PREFIX)$(ARCH)/*/bin -type f -print              \
          | sed -e 's:.*:../& /usr/bin:'                                \
            > deb/debian/vpp.install ;                                  \
-       find $(INSTALL_PREFIX)$(ARCH)/*/lib*  -type f -print            \
-         | egrep -e '*\.so\.*\.*\.*'                                   \
+                                                                       \
+       : core api definitions ;                                        \
+       ./scripts/find-api-core-contents $(INSTALL_PREFIX)$(ARCH)       \
+        deb/debian/vpp.install ;                                       \
+                                                                       \
+       : need symbolic links in the lib pkg ;                          \
+       find $(INSTALL_PREFIX)$(ARCH)/*/lib* \( -type f -o  -type l \)  \
+         -print | egrep -e '*\.so\.*\.*\.*'                            \
+         | grep -v plugins\/                                           \
          | sed -e 's:.*:../& /usr/lib/x86_64-linux-gnu:'               \
            > deb/debian/vpp-lib.install ;                              \
                                                                        \
+       : vnet api definitions ;                                        \
+       ./scripts/find-api-lib-contents $(INSTALL_PREFIX)$(ARCH)        \
+        deb/debian/vpp-lib.install ;                                   \
+                                                                       \
        : dev package ;                                                 \
        ./scripts/find-dev-contents $(INSTALL_PREFIX)$(ARCH)            \
         deb/debian/vpp-dev.install ;                                   \
                                                                        \
+       : plugins package ;                                             \
+       ./scripts/find-plugins-contents $(INSTALL_PREFIX)$(ARCH)        \
+        deb/debian/vpp-plugins.install ;                               \
+                                                                       \
+       : python-api package ;                                          \
+       ./scripts/find-python-api-contents $(INSTALL_PREFIX)$(ARCH)     \
+        deb/debian/vpp-python-api.install ;                            \
+                                                                       \
        : dpdk headers ;                                                \
        ./scripts/find-dpdk-contents $(INSTALL_PREFIX)$(ARCH)           \
         deb/debian/vpp-dpdk-dev.install ;                              \
                                                                        \
        : bin package needs startup config ;                            \
-       echo ../../vpp/conf/startup.conf /etc/vpp                       \
+       echo ../../src/vpp/conf/startup.conf /etc/vpp                   \
           >> deb/debian/vpp.install ;                                  \
                                                                        \
        : and sysctl config ;                                           \
-       echo ../../vpp/conf/80-vpp.conf /etc/sysctl.d                   \
+       echo ../../src/vpp/conf/80-vpp.conf /etc/sysctl.d               \
           >> deb/debian/vpp.install ;                                  \
                                                                        \
        : dev package needs a couple of additions ;                     \
-        echo ../build-tool-native/vppapigen/vppapigen /usr/bin         \
-           >> deb/debian/vpp-dev.install ;                             \
+       echo ../build-tool-native/tools/vppapigen /usr/bin              \
+          >> deb/debian/vpp-dev.install ;                              \
+       echo ../../vpp-api/java/jvpp/gen/jvpp_gen.py /usr/bin           \
+          >> deb/debian/vpp-dev.install ;                              \
+       for i in $$(ls ../vpp-api/java/jvpp/gen/jvppgen/*.py); do       \
+          echo ../$${i} /usr/lib/python2.7/dist-packages/jvppgen       \
+              >> deb/debian/vpp-dev.install;                           \
+       done;                                                           \
                                                                        \
        : generate changelog;                                           \
        ./scripts/generate-deb-changelog                                \
@@ -70,6 +95,11 @@ install-rpm: $(patsubst %,%-find-source,$(ROOT_PACKAGES))
              $(ROOT_PACKAGES)) || exit 1;                              \
                                                                        \
        cd rpm ;                                                        \
-       rpmbuild -bb --define "_topdir $$PWD"  vpp.spec ;               \
+       mkdir -p SOURCES ;                                              \
+       if test -f *.tar.gz ; then mv *.tar.gz SOURCES ; fi ;           \
+       rpmbuild -bb --define "_topdir $$PWD" --define                  \
+               "_install_dir $(INSTALL_PREFIX)$(ARCH)"                 \
+               --define "_mu_build_root_dir $(MU_BUILD_ROOT_DIR)"      \
+               vpp.spec ;                                              \
        mv $$(find RPMS -name \*.rpm -type f) ..