view miscutil/Makefile @ 28:a8fd4ff6b013

gsmfr-max-out: dump transformed codec parameters too
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 21 Nov 2022 01:02:07 +0000
parents baadb1cb744d
children edd2e20e7090
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	gsmrec-dump
LIBTEST=../libtest/libtest.a
INSTBIN=/opt/freecalypso/bin

all:	${PROGS}

gsmrec-dump:	gsmrec-dump.o ${LIBTEST}
	${CC} ${CFLAGS} -o $@ gsmrec-dump.o ${LIBTEST} -lgsm

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

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