FreeCalypso > hg > gsm-codec-lib
view pcap/Makefile @ 179:6e39fc0134da
[e]frtest/dlcap-gsmx.c: fix comment pointing to description of DSP flags
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 30 Dec 2022 07:23:24 +0000 |
parents | 9bd01faadaed |
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}