view pcap/Makefile @ 117:f9c9dd458d55

libgsmefr/cnst.h: drop SERIAL_SIZE definition, ETSI test seq detail, no meaning for our library version
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 30 Nov 2022 23:12:15 +0000
parents 39dbaccc349d
children b9af126bfddb
line wrap: on
line source

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

all:	${PROGS}

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}