mirror of
https://github.com/vel21ripn/nDPI.git
synced 2026-04-30 16:09:43 +00:00
52 lines
1.7 KiB
Makefile
52 lines
1.7 KiB
Makefile
CC=@CC@
|
|
CXX=@CXX@
|
|
SRCHOME=../src
|
|
CFLAGS=-g -fPIC -DPIC -I$(SRCHOME)/include @CFLAGS@
|
|
LIBNDPI=$(SRCHOME)/lib/libndpi.a
|
|
LDFLAGS=$(LIBNDPI) @PCAP_LIB@ @ADDITIONAL_LIBS@ -lpthread -lm @LDFLAGS@
|
|
HEADERS=intrusion_detection.h reader_util.h $(SRCHOME)/include/ndpi_api.h \
|
|
$(SRCHOME)/include/ndpi_typedefs.h $(SRCHOME)/include/ndpi_protocol_ids.h
|
|
OBJS=ndpiReader.o reader_util.o intrusion_detection.o
|
|
PREFIX?=@prefix@
|
|
|
|
all: ndpiReader @DPDK_TARGET@
|
|
|
|
EXECUTABLE_SOURCES := ndpiReader.c ndpiSimpleIntegration.c
|
|
COMMON_SOURCES := $(filter-out $(EXECUTABLE_SOURCES),$(wildcard *.c ))
|
|
|
|
libndpiReader.a: $(COMMON_SOURCES:%.c=%.o) $(LIBNDPI)
|
|
ar rsv libndpiReader.a $(COMMON_SOURCES:%.c=%.o)
|
|
|
|
ndpiReader: libndpiReader.a $(LIBNDPI) ndpiReader.o
|
|
$(CC) $(CFLAGS) ndpiReader.o libndpiReader.a -o $@ $(LDFLAGS)
|
|
|
|
ndpiSimpleIntegration: ndpiSimpleIntegration.o
|
|
$(CC) $(CFLAGS) $< -o $@ $(LDFLAGS)
|
|
|
|
%.o: %.c $(HEADERS) Makefile
|
|
$(CC) $(CFLAGS) -c $< -o $@
|
|
|
|
install: ndpiReader
|
|
mkdir -p $(DESTDIR)$(PREFIX)/bin/
|
|
mkdir -p $(DESTDIR)$(PREFIX)/share/ndpi
|
|
cp ndpiReader $(DESTDIR)$(PREFIX)/bin/
|
|
cp protos.txt $(DESTDIR)$(PREFIX)/share/ndpi/ndpiProtos.txt
|
|
cp mining_hosts.txt $(DESTDIR)$(PREFIX)/share/ndpi/ndpiCustomCategory.txt
|
|
[ -f build/app/ndpiReader.dpdk ] && cp build/app/ndpiReader.dpdk $(DESTDIR)$(PREFIX)/bin/ || true
|
|
[ -f ndpiReader.dpdk ] && cp ndpiReader.dpdk $(DESTDIR)$(PREFIX)/bin/ || true
|
|
|
|
dpdk:
|
|
make -f Makefile.dpdk
|
|
|
|
check:
|
|
cppcheck --template='{file}:{line}:{severity}:{message}' --quiet --enable=all --force -I$(SRCHOME)/include *.c
|
|
|
|
clean:
|
|
/bin/rm -f *.o ndpiReader ndpiReader.dpdk
|
|
/bin/rm -f .*.dpdk.cmd .*.o.cmd *.dpdk.map .*.o.d
|
|
/bin/rm -f _install _postbuild _postinstall _preinstall
|
|
/bin/rm -rf build
|
|
|
|
distclean: clean
|
|
/bin/rm -f Makefile.dpdk
|
|
/bin/rm -f Makefile
|