FreeCalypso > hg > rtp-debug-utils
diff Makefile @ 9:c00510e1ae8b
new program udp-test-sink
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 10 Mar 2024 02:27:37 +0000 |
parents | d180987db615 |
children | e686bc92c7d8 |
line wrap: on
line diff
--- a/Makefile Thu Mar 07 22:39:41 2024 +0000 +++ b/Makefile Sun Mar 10 02:27:37 2024 +0000 @@ -1,7 +1,8 @@ CC= gcc CFLAGS= -O2 PROGS= rtp-cont-check rtp-g711-extr rtp-gsmfr-dump rtp-gsmfr-extr \ - rtp-jitter-view rtp-stream-dump rtp-stream-gen rtp-tfo-trace + rtp-jitter-view rtp-stream-dump rtp-stream-gen rtp-tfo-trace \ + udp-test-sink INSTBIN=/opt/freecalypso/bin all: ${PROGS} @@ -30,6 +31,9 @@ rtp-tfo-trace: rtp-tfo-trace.c ${CC} ${CFLAGS} -o $@ $@.c -lpcap +udp-test-sink: udp-test-sink.c + ${CC} ${CFLAGS} -o $@ $@.c + install: mkdir -p ${INSTBIN} install -c ${PROGS} ${INSTBIN}