comparison pcap/Makefile @ 175:9bd01faadaed

rtp-g711-extr program written
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 27 Dec 2022 01:17:51 +0000
parents 693a0958a303
children
comparison
equal deleted inserted replaced
174:d284f2ac087d 175:9bd01faadaed
1 CC= gcc 1 CC= gcc
2 CFLAGS= -O2 2 CFLAGS= -O2
3 PROGS= rtp-cont-check rtp-gsmfr-extr rtp-jitter-view 3 PROGS= rtp-cont-check rtp-g711-extr 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
10
11 rtp-g711-extr: rtp-g711-extr.c
9 ${CC} ${CFLAGS} -o $@ $@.c -lpcap 12 ${CC} ${CFLAGS} -o $@ $@.c -lpcap
10 13
11 rtp-gsmfr-extr: rtp-gsmfr-extr.c 14 rtp-gsmfr-extr: rtp-gsmfr-extr.c
12 ${CC} ${CFLAGS} -o $@ $@.c -lpcap 15 ${CC} ${CFLAGS} -o $@ $@.c -lpcap
13 16