FreeCalypso > hg > rtp-debug-utils
comparison Makefile @ 3:50aa973a91ef
new program rtp-gsmfr-dump
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 16 Apr 2023 06:43:18 +0000 |
parents | 41eba040785a |
children | 709aa9ad72d1 |
comparison
equal
deleted
inserted
replaced
2:210dfa39f573 | 3:50aa973a91ef |
---|---|
1 CC= gcc | 1 CC= gcc |
2 CFLAGS= -O2 | 2 CFLAGS= -O2 |
3 PROGS= rtp-cont-check rtp-g711-extr rtp-gsmfr-extr rtp-jitter-view \ | 3 PROGS= rtp-cont-check rtp-g711-extr rtp-gsmfr-dump rtp-gsmfr-extr \ |
4 rtp-tfo-trace | 4 rtp-jitter-view rtp-tfo-trace |
5 INSTBIN=/opt/freecalypso/bin | 5 INSTBIN=/opt/freecalypso/bin |
6 | 6 |
7 all: ${PROGS} | 7 all: ${PROGS} |
8 | 8 |
9 rtp-cont-check: rtp-cont-check.c | 9 rtp-cont-check: rtp-cont-check.c |
10 ${CC} ${CFLAGS} -o $@ $@.c -lpcap | 10 ${CC} ${CFLAGS} -o $@ $@.c -lpcap |
11 | 11 |
12 rtp-g711-extr: rtp-g711-extr.c | 12 rtp-g711-extr: rtp-g711-extr.c |
13 ${CC} ${CFLAGS} -o $@ $@.c -lpcap | 13 ${CC} ${CFLAGS} -o $@ $@.c -lpcap |
14 | |
15 rtp-gsmfr-dump: rtp-gsmfr-dump.c | |
16 ${CC} ${CFLAGS} -o $@ $@.c -lpcap -lgsmefr -lgsm | |
14 | 17 |
15 rtp-gsmfr-extr: rtp-gsmfr-extr.c | 18 rtp-gsmfr-extr: rtp-gsmfr-extr.c |
16 ${CC} ${CFLAGS} -o $@ $@.c -lpcap | 19 ${CC} ${CFLAGS} -o $@ $@.c -lpcap |
17 | 20 |
18 rtp-jitter-view: rtp-jitter-view.c | 21 rtp-jitter-view: rtp-jitter-view.c |