FreeCalypso > hg > rtp-debug-utils
view pcap-study/Makefile @ 17:ab18adf989e3 default tip
pcm-study: new program pcm16-frag-extr
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 29 Oct 2024 00:32:33 +0000 |
parents | 1bc144545563 |
children |
line wrap: on
line source
PROGS= rtp-cont-check rtp-g711-extr rtp-gsmfr-dump rtp-gsmfr-extr \ rtp-jitter-view rtp-stream-dump rtp-tfo-trace rtp-tw5-extr include ../config.defs all: ${PROGS} rtp-cont-check: rtp-cont-check.c ${CC} ${CFLAGS} -o $@ $@.c -lpcap rtp-g711-extr: rtp-g711-extr.c ${CC} ${CFLAGS} -o $@ $@.c -lpcap rtp-gsmfr-dump: rtp-gsmfr-dump.c ${CC} ${CFLAGS} -o $@ $@.c -lpcap -lgsmefr -lgsmfr2 rtp-gsmfr-extr: rtp-gsmfr-extr.c ${CC} ${CFLAGS} -o $@ $@.c -lpcap rtp-jitter-view: rtp-jitter-view.c ${CC} ${CFLAGS} -o $@ $@.c -lpcap rtp-stream-dump: rtp-stream-dump.c ${CC} ${CFLAGS} -o $@ $@.c -lpcap rtp-tfo-trace: rtp-tfo-trace.c ${CC} ${CFLAGS} -o $@ $@.c -lpcap rtp-tw5-extr: rtp-tw5-extr.c ${CC} ${CFLAGS} -o $@ $@.c -lpcap install: mkdir -p ${DESTDIR}${bindir} install -c ${PROGS} ${DESTDIR}${bindir} clean: rm -f *.o *.out ${PROGS}