FreeCalypso > hg > rtp-debug-utils
diff Makefile @ 1:41eba040785a
rtp-tfo-trace program written, compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 02 Apr 2023 05:36:35 +0000 |
parents | 05ff0f7ac977 |
children | 50aa973a91ef |
line wrap: on
line diff
--- a/Makefile Sun Apr 02 00:28:28 2023 +0000 +++ b/Makefile Sun Apr 02 05:36:35 2023 +0000 @@ -1,6 +1,7 @@ CC= gcc CFLAGS= -O2 -PROGS= rtp-cont-check rtp-g711-extr rtp-gsmfr-extr rtp-jitter-view +PROGS= rtp-cont-check rtp-g711-extr rtp-gsmfr-extr rtp-jitter-view \ + rtp-tfo-trace INSTBIN=/opt/freecalypso/bin all: ${PROGS} @@ -17,6 +18,9 @@ rtp-jitter-view: rtp-jitter-view.c ${CC} ${CFLAGS} -o $@ $@.c -lpcap +rtp-tfo-trace: rtp-tfo-trace.c + ${CC} ${CFLAGS} -o $@ $@.c -lpcap + install: mkdir -p ${INSTBIN} install -c ${PROGS} ${INSTBIN}