mirror of
https://github.com/vel21ripn/nDPI.git
synced 2026-04-28 23:19:42 +00:00
40 lines
1.2 KiB
Makefile
40 lines
1.2 KiB
Makefile
CC=@CC@
|
|
CXX=@CXX@
|
|
CFLAGS=-g -I../src/include @CFLAGS@
|
|
LIBNDPI=../src/lib/libndpi.a
|
|
LDFLAGS=$(LIBNDPI) @PCAP_LIB@ -lpthread -lm @LDFLAGS@
|
|
OBJS=ndpiReader.o reader_util.o intrusion_detection.o
|
|
PREFIX?=@prefix@
|
|
|
|
all: ndpiReader @DPDK_TARGET@
|
|
|
|
ndpiReader: $(OBJS) $(LIBNDPI)
|
|
$(CXX) $(CFLAGS) $(OBJS) -o $@ $(LDFLAGS)
|
|
|
|
%.o: %.c $(HEADERS) Makefile
|
|
$(CC) $(CFLAGS) -c $< -o $@
|
|
|
|
install:
|
|
mkdir -p $(DESTDIR)$(PREFIX)/bin/
|
|
mkdir -p $(DESTDIR)$(PREFIX)/sbin/ndpi
|
|
cp ndpiReader $(DESTDIR)$(PREFIX)/bin/
|
|
cp protos.txt $(DESTDIR)$(PREFIX)/sbin/ndpi/ndpiProtos.txt
|
|
cp mining_hosts.txt $(DESTDIR)$(PREFIX)/sbin/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../src/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
|