view pcap/Makefile @ 171:75607bc26f57

rtp-cont-check design change: print time deltas instead of checking against arbitrary thresholds
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 26 Dec 2022 21:35:09 +0000
parents b9af126bfddb
children 693a0958a303
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	rtp-cont-check rtp-gsmfr-extr
INSTBIN=/opt/freecalypso/bin

all:	${PROGS}

rtp-cont-check:	rtp-cont-check.c
	${CC} ${CFLAGS} -o $@ $@.c -lpcap

rtp-gsmfr-extr:	rtp-gsmfr-extr.c
	${CC} ${CFLAGS} -o $@ $@.c -lpcap

install:
	mkdir -p ${INSTBIN}
	install -c ${PROGS} ${INSTBIN}

clean:
	rm -f *.o *.out ${PROGS}