FreeCalypso > hg > gsm-codec-lib
comparison 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 |
comparison
equal
deleted
inserted
replaced
| 171:75607bc26f57 | 172:693a0958a303 |
|---|---|
| 1 CC= gcc | 1 CC= gcc |
| 2 CFLAGS= -O2 | 2 CFLAGS= -O2 |
| 3 PROGS= rtp-cont-check rtp-gsmfr-extr | 3 PROGS= rtp-cont-check rtp-gsmfr-extr rtp-jitter-view |
| 4 INSTBIN=/opt/freecalypso/bin | 4 INSTBIN=/opt/freecalypso/bin |
| 5 | 5 |
| 6 all: ${PROGS} | 6 all: ${PROGS} |
| 7 | 7 |
| 8 rtp-cont-check: rtp-cont-check.c | 8 rtp-cont-check: rtp-cont-check.c |
| 9 ${CC} ${CFLAGS} -o $@ $@.c -lpcap | 9 ${CC} ${CFLAGS} -o $@ $@.c -lpcap |
| 10 | 10 |
| 11 rtp-gsmfr-extr: rtp-gsmfr-extr.c | 11 rtp-gsmfr-extr: rtp-gsmfr-extr.c |
| 12 ${CC} ${CFLAGS} -o $@ $@.c -lpcap | 12 ${CC} ${CFLAGS} -o $@ $@.c -lpcap |
| 13 | 13 |
| 14 rtp-jitter-view: rtp-jitter-view.c | |
| 15 ${CC} ${CFLAGS} -o $@ $@.c -lpcap | |
| 16 | |
| 14 install: | 17 install: |
| 15 mkdir -p ${INSTBIN} | 18 mkdir -p ${INSTBIN} |
| 16 install -c ${PROGS} ${INSTBIN} | 19 install -c ${PROGS} ${INSTBIN} |
| 17 | 20 |
| 18 clean: | 21 clean: |
