view pcap/Makefile @ 204:0494279ae379
libgsmefr/Makefile: enable library install
author |
Mychaela Falconia <falcon@freecalypso.org> |
date |
Wed, 04 Jan 2023 06:27:05 +0000 (2023-01-04) |
parents |
9bd01faadaed |
children |
|
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}