diff options
author | Toni <matzeton@googlemail.com> | 2020-09-29 17:58:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-29 17:58:33 +0200 |
commit | 656323c33450db868cda7b3e2cc75d0e417d8d6e (patch) | |
tree | 196cc9a5950e8ff822c2ac59b71afcb23b32a821 /python | |
parent | 8e1a3f5cdcdb7b18494662f8c11e78a2ee2417ed (diff) |
Added missing files to `make dist' target which are not required to build nDPI but still somehow essential. (#1024)
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'python')
-rw-r--r-- | python/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/Makefile.in b/python/Makefile.in index 91b4230c7..497e689fe 100644 --- a/python/Makefile.in +++ b/python/Makefile.in @@ -1,8 +1,8 @@ CC=@CC@ -CFLAGS=-I. -I../src/include -I./src/lib/third_party/include -shared -Wl, +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=$(CFILE) $(LIBNDPI) -lpcap +LDFLAGS=$(CFILE) $(LIBNDPI) -lpcap @ADDITIONAL_LIBS@ SHARE = -soname,ndpi_wrap SO=ndpi_wrap.so OBJS = ndpi_wrap.o @@ -19,7 +19,7 @@ endif all: $(SO) $(SO): $(CFILE) $(LIBNDPI) Makefile - $(CC) $(CFLAGS)$(SHARE) -o $@ $(PIC) $(LDFLAGS) + $(CC) $(CFLAGS) -Wl,$(SHARE) -o $@ $(PIC) $(LDFLAGS) # ln -s $(LIBNDPI) . clean: |