diff pcap/Makefile @ 172:693a0958a303

yet another refactoring of RTP tools: the program that prints each time delta is now rtp-jitter-view, whereas rtp-cont-check now reports min and max instead.
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 26 Dec 2022 22:42:41 +0000
parents b9af126bfddb
children 9bd01faadaed
line wrap: on
line diff
--- a/pcap/Makefile	Mon Dec 26 21:35:09 2022 +0000
+++ b/pcap/Makefile	Mon Dec 26 22:42:41 2022 +0000
@@ -1,6 +1,6 @@
 CC=	gcc
 CFLAGS=	-O2
-PROGS=	rtp-cont-check rtp-gsmfr-extr
+PROGS=	rtp-cont-check rtp-gsmfr-extr rtp-jitter-view
 INSTBIN=/opt/freecalypso/bin
 
 all:	${PROGS}
@@ -11,6 +11,9 @@
 rtp-gsmfr-extr:	rtp-gsmfr-extr.c
 	${CC} ${CFLAGS} -o $@ $@.c -lpcap
 
+rtp-jitter-view:	rtp-jitter-view.c
+	${CC} ${CFLAGS} -o $@ $@.c -lpcap
+
 install:
 	mkdir -p ${INSTBIN}
 	install -c ${PROGS} ${INSTBIN}