view miscutil/Makefile @ 24:94f18b720f1e

new debug utility gsmfr-preproc
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 20 Nov 2022 08:30: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}