blob: f48b9aa7dd6da73b95e95c443edf8ee10cf0397a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = src @EXTRA_TARGETS@
if BUILD_FUZZTARGETS
SUBDIRS += fuzz
endif
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libndpi.pc
EXTRA_DIST = \
README.md CHANGELOG.md CONTRIBUTING.md README.protocols \
autogen.sh configure.seed \
wireshark python windows utils packages example/MacOS example/Win32 \
doc/nDPI_QuickStartGuide.pages doc/nDPI_QuickStartGuide.pdf
changelog:
git log --since={`curl -s https://github.com/ntop/ndpi/releases | grep datetime | head -n1 | egrep -o "[0-9]+\-[0-9]+\-[0-9]+"`} --name-only --pretty=format:" - %s" | grep "^ " > CHANGELOG.latest
|