FreeCalypso > hg > gsm-codec-lib
view pcap/Makefile @ 166:500f3e93964f
gsmfr-dlcap-gsmx: handle DSP flags consistently with EFR version
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 16 Dec 2022 08:23:32 +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}