FreeCalypso > hg > gsm-codec-lib
view 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 |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= rtp-cont-check rtp-g711-extr rtp-gsmfr-extr rtp-jitter-view INSTBIN=/opt/freecalypso/bin 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-extr: rtp-gsmfr-extr.c ${CC} ${CFLAGS} -o $@ $@.c -lpcap rtp-jitter-view: rtp-jitter-view.c ${CC} ${CFLAGS} -o $@ $@.c -lpcap install: mkdir -p ${INSTBIN} install -c ${PROGS} ${INSTBIN} clean: rm -f *.o *.out ${PROGS}