FreeCalypso > hg > gsm-codec-lib
diff hrutil/Makefile @ 515:bb36ef735f25
hrutil: starting with gsmhr-cod-parse
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Fri, 30 Aug 2024 08:05:07 +0000 |
parents | efrtest/Makefile@d80ccb3c3970 |
children | 2d703e1e9107 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/hrutil/Makefile Fri Aug 30 08:05:07 2024 +0000 @@ -0,0 +1,16 @@ +PROGS= gsmhr-cod-parse +LIBHR1= ../libgsmhr1/libgsmhr1.a + +include ../config.defs + +all: ${PROGS} + +gsmhr-cod-parse: cod-parse.o print-frame.o read-cod.o ${LIBHR1} + ${CC} ${CFLAGS} -o $@ $^ + +install: + mkdir -p ${DESTDIR}${bindir} + install -c ${PROGS} ${DESTDIR}${bindir} + +clean: + rm -f *.o *.out ${PROGS}