aboutsummaryrefslogtreecommitdiff
path: root/example/Makefile.in
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2022-07-12 11:55:58 +0200
committerToni Uhlig <matzeton@googlemail.com>2022-07-12 19:40:43 +0200
commit30f96ad51bbc90d63411a407853bfc132f27ccc2 (patch)
tree4628afc521403a4e802d4b129fa72c97c6b9e765 /example/Makefile.in
parentb4cb14ec1922b16a52c24324792f2bd7819f04a7 (diff)
Do not interfere with CFLAGS/LDFLAGS env anymore.improved/c-ld-flags-copts
* CI fixes * some build systems do not like that (e.g. OpenWrt) * fixed some rrdtool related build warnings/errors Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'example/Makefile.in')
-rw-r--r--example/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/example/Makefile.in b/example/Makefile.in
index f8f68efa7..73bc51986 100644
--- a/example/Makefile.in
+++ b/example/Makefile.in
@@ -9,8 +9,8 @@ SRCHOME=../src
ifneq ($(OS),Windows_NT)
CFLAGS+=-fPIC -DPIC
endif
-CFLAGS+=-I$(SRCHOME)/include @PCAP_INC@ @CFLAGS@ @GPROF_CFLAGS@
-LDFLAGS=@LDFLAGS@
+CFLAGS+=-I$(SRCHOME)/include @NDPI_CFLAGS@ @PCAP_INC@ @GPROF_CFLAGS@
+LDFLAGS+=@NDPI_LDFLAGS@
LIBNDPI=$(SRCHOME)/lib/libndpi.a
LIBS=$(LIBNDPI) @PCAP_LIB@ @ADDITIONAL_LIBS@ @LIBS@ @GPROF_LIBS@
HEADERS=reader_util.h $(SRCHOME)/include/ndpi_api.h \