mirror of
https://github.com/vel21ripn/nDPI.git
synced 2026-05-02 08:50:18 +00:00
* build: update m4/ax_pthread.m4 from serial 23 -> serial 31 Update ax_pthread.m4 to the latest version from the autoconf-archive project. Signed-off-by: Sam James <sam@gentoo.org> * build: properly detect AR, CC, RANLIB It's necessary to be able to override choice of AR/CC/RANLIB and other toolchain variables/tools for cross-compilation, testing with other toolchains, and to ensure the compiler chosen by the user is actually used for the build. Previously, GNU_PREFIX was kind-of used for this but this isn't a standard variable (at all) and it wasn't applied consistently anyway. We now use the standard autoconf mechanisms for finding these tools. (RANLIB is already covered by LT_INIT.) Signed-off-by: Sam James <sam@gentoo.org> * build: use $(MAKE) This ensures that parallel make works correctly, as otherwise, a fresh make job will be started without the jobserver fd, and hence not know about its parent, forcing -j1. * build: respect CPPFLAGS, LDFLAGS - CPPFLAGS is for the C preprocessor (usually for setting defines) - LDFLAGS should be placed before objects for certain flags to work (e.g. -Wl,--as-needed) Signed-off-by: Sam James <sam@gentoo.org> Co-authored-by: Luca Deri <lucaderi@users.noreply.github.com>
43 lines
1.8 KiB
Makefile
43 lines
1.8 KiB
Makefile
NDPI_HOME=$(PWD)/../..
|
|
NDPI_BUILD="$(realpath ${NDPI_HOME}/packages/ubuntu)"
|
|
|
|
ndpi:
|
|
\rm -rf ./debian/ndpi-tmp ./debian/ndpi-dev-tmp ./debian/ndpi ./debian/ndpi-dev
|
|
mkdir -p ./debian/ndpi-tmp ./debian/ndpi-dev-tmp
|
|
mkdir -p ./debian/ndpi-tmp/usr/lib ./debian/ndpi-tmp/usr/bin
|
|
mkdir -p ./debian/ndpi-dev-tmp/usr/lib ./debian/ndpi-dev-tmp/usr/include/ndpi ./debian/ndpi-dev-tmp/usr/lib/pkgconfig
|
|
cd ${NDPI_HOME}; ./autogen.sh; ./configure; $(MAKE)
|
|
cp $(NDPI_HOME)/src/lib/libndpi.so.@NDPI_VERS@ ./debian/ndpi-tmp/usr/lib/
|
|
cd ./debian/ndpi-tmp/usr/lib/; ln -s libndpi.so.@NDPI_VERS@ libndpi.so; cd -
|
|
cd ./debian/ndpi-tmp/usr/lib/; ln -s libndpi.so.@NDPI_VERS@ libndpi.so.@MAJOR_RELEASE@; cd -
|
|
cp $(NDPI_HOME)/src/lib/libndpi.a ./debian/ndpi-dev-tmp/usr/lib/
|
|
cp $(NDPI_HOME)/example/ndpiReader ./debian/ndpi-tmp/usr/bin/
|
|
cp $(NDPI_HOME)/src/include/*.h ./debian/ndpi-dev-tmp/usr/include/ndpi/
|
|
cp $(NDPI_HOME)/libndpi.pc ./debian/ndpi-dev-tmp/usr/lib/pkgconfig/
|
|
-rm -fr ./debian/ndpi-dev-tmp/usr/include/ndpi/ndpi_win32.h*
|
|
@echo
|
|
@find ./debian/ndpi-tmp -name "*~" -exec /bin/rm {} ';'
|
|
@find ./debian/ndpi-dev-tmp -name "*~" -exec /bin/rm {} ';'
|
|
dpkg-buildpackage -rfakeroot -d -us -uc
|
|
dpkg-sig --sign builder -k D1EB60BE ../ndpi*deb
|
|
@\rm -f ../ndpi*dsc ../ndpi*.gz ../ndpi*changes
|
|
@/bin/mv ../ndpi*deb .
|
|
@echo
|
|
@echo "Package built."
|
|
@/bin/ls ndpi*deb
|
|
@echo "-------------------------------"
|
|
-dpkg --contents ndpi_*.deb
|
|
@echo "-------------------------------"
|
|
@echo "-------------------------------"
|
|
-dpkg --contents ndpi-dev_*.deb
|
|
@echo "-------------------------------"
|
|
|
|
distclean:
|
|
-cd ${NDPI_HOME} && $(MAKE) distclean
|
|
|
|
install:
|
|
cd ${NDPI_HOME}; $(MAKE) install DESTDIR="${NDPI_BUILD}/debian/tmp" AM_UPDATE_INFO_DIR=no
|
|
|
|
clean:
|
|
-cd ${NDPI_HOME} && $(MAKE) clean
|
|
-rm -rf *~ *deb ./usr ./debian/ndpi ./debian/ndpi-dev ./debian/ndpi ./debian/ndpi-dev
|