mirror of
https://github.com/vel21ripn/nDPI.git
synced 2026-04-28 06:59:40 +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>
27 lines
668 B
Makefile
27 lines
668 B
Makefile
CC=@CC@
|
|
CFLAGS=-I. -I../src/include -I./src/lib/third_party/include @CFLAGS@ @CUSTOM_NDPI@ -shared
|
|
#LIBNDPI=../src/lib/libndpi.so.@NDPI_VERSION_SHORT@
|
|
LIBNDPI=../src/lib/libndpi.a
|
|
LDFLAGS=@LDFLAGS@
|
|
LIBS=$(CFILE) $(LIBNDPI) -lpcap @LIBS@ @ADDITIONAL_LIBS@
|
|
SHARE = -soname,ndpi_wrap
|
|
SO=ndpi_wrap.so
|
|
OBJS = ndpi_wrap.o
|
|
CFILE = ndpi_wrap.c
|
|
PIC = -fPIC
|
|
PREFIX?=/usr/local
|
|
.PHONY: all
|
|
|
|
UNAME_S := $(shell uname -s)
|
|
ifeq ($(UNAME_S),Darwin)#do something for linux
|
|
SHARE=-install_name,ndpiReader.so
|
|
endif
|
|
|
|
all: $(SO)
|
|
|
|
$(SO): $(CFILE) $(LIBNDPI) Makefile
|
|
$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) $(PIC) -Wl,$(SHARE) -o $@ $(LIBS)
|
|
# ln -s $(LIBNDPI) .
|
|
|
|
clean:
|
|
/bin/rm -f $(SO)
|