aboutsummaryrefslogtreecommitdiff
path: root/example/Makefile.in
diff options
context:
space:
mode:
authorSimone Mainardi <mainardi@ntop.org>2018-09-11 10:43:04 +0200
committerSimone Mainardi <mainardi@ntop.org>2018-09-11 10:43:04 +0200
commit6ac83ce7eb9961785bb2b7ba4c3788524591b30f (patch)
tree6cff4a3c5aec6ede583b7140a77ee515a13513db /example/Makefile.in
parentb9ae0f8888da758f93aa6ed2033b614926a4e3d8 (diff)
Fixes broken hyperscan compilation
Diffstat (limited to 'example/Makefile.in')
-rw-r--r--example/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/Makefile.in b/example/Makefile.in
index b515fa42a..7f465bdde 100644
--- a/example/Makefile.in
+++ b/example/Makefile.in
@@ -7,7 +7,7 @@ OBJS=ndpiReader.o ndpi_util.o
all: ndpiReader
ndpiReader: $(OBJS) $(LIBNDPI)
- $(CC) $(CFLAGS) $(OBJS) -o $@ $(LDFLAGS)
+ $(CXX) $(CFLAGS) $(OBJS) -o $@ $(LDFLAGS)
%.o: %.c $(HEADERS) Makefile
$(CC) $(CFLAGS) -c $< -o $@