diff options
author | theirix <theirix@gmail.com> | 2016-08-13 17:14:01 +0300 |
---|---|---|
committer | theirix <theirix@gmail.com> | 2016-08-13 17:14:01 +0300 |
commit | 9c4f80449be1776978a7a0829d20e1c503655d39 (patch) | |
tree | f10fcac1b8e72b9ac174dbed6de4ecab8d72033f | |
parent | dc88cc4e64fd7458772a9c3c6fbf7fbbb3667e31 (diff) |
Fixed dist build
-rw-r--r-- | example/Makefile.am | 2 | ||||
-rw-r--r-- | src/lib/Makefile.am | 3 | ||||
-rw-r--r-- | tests/Makefile.am | 2 |
3 files changed, 6 insertions, 1 deletions
diff --git a/example/Makefile.am b/example/Makefile.am index 875f9901e..a55212c92 100644 --- a/example/Makefile.am +++ b/example/Makefile.am @@ -6,7 +6,7 @@ AM_CFLAGS = @PTHREAD_CFLAGS@ LDADD = $(top_builddir)/src/lib/libndpi.la @JSON_C_LIB@ @PTHREAD_LIBS@ @PCAP_LIB@ AM_LDFLAGS = -static -ndpiReader_SOURCES = ndpiReader.c ndpi_util.c +ndpiReader_SOURCES = ndpiReader.c ndpi_util.c ndpi_util.h ndpiReader.o: ndpiReader.c diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am index 3ba119d7d..b920d4d67 100644 --- a/src/lib/Makefile.am +++ b/src/lib/Makefile.am @@ -160,8 +160,11 @@ libndpi_la_SOURCES = ndpi_content_match.c.inc \ protocols/zeromq.c \ third_party/include/actypes.h \ third_party/include/ahocorasick.h \ + third_party/include/ndpi_patricia.h \ third_party/include/node.h \ third_party/include/sort.h \ third_party/src/ahocorasick.c \ third_party/src/node.c \ third_party/src/sort.c + +EXTRA_DIST = third_party/src/ndpi_patricia.c diff --git a/tests/Makefile.am b/tests/Makefile.am index f0836970b..a8a127088 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1 +1,3 @@ TESTS = do.sh + +EXTRA_DIST = do.sh pcap result |