diff options
author | Luca Deri <deri@ntop.org> | 2021-12-03 21:10:43 +0100 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2021-12-03 21:10:43 +0100 |
commit | 8c4ae7527b3c5d9543f01ae483c990fbab0c56c5 (patch) | |
tree | d829e7d3dad5e299a50e89d07adee0faca5757c0 /rrdtool/Makefile.in | |
parent | 1b077ba65fb7094eef6d18448b176da50035d91e (diff) |
Updated rrdtool makefile
Diffstat (limited to 'rrdtool/Makefile.in')
-rw-r--r-- | rrdtool/Makefile.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/rrdtool/Makefile.in b/rrdtool/Makefile.in new file mode 100644 index 000000000..d25e0bdac --- /dev/null +++ b/rrdtool/Makefile.in @@ -0,0 +1,7 @@ + +INC=-I ../src/include +LIBDPI=../src/lib/libndpi.a +LIB=$(LIBDPI) -lrrd -lm @LIBS@ @ADDITIONAL_LIBS@ @LDFLAGS@ + +rrd_anomaly: rrd_anomaly.c Makefile $(LIBDPI) + $(CC) -g $(INC) rrd_anomaly.c -o rrd_anomaly $(LIB) |