FreeCalypso > hg > gsm-codec-lib
comparison hrutil/Makefile @ 518:087a88d25ba2
new program gsmhr-dec-craft
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 01 Sep 2024 18:58:02 +0000 |
parents | 2d703e1e9107 |
children |
comparison
equal
deleted
inserted
replaced
517:2d703e1e9107 | 518:087a88d25ba2 |
---|---|
1 PROGS= gsmhr-cod-parse gsmhr-dec-parse | 1 PROGS= gsmhr-cod-parse gsmhr-dec-craft gsmhr-dec-parse |
2 LIBHR1= ../libgsmhr1/libgsmhr1.a | 2 LIBHR1= ../libgsmhr1/libgsmhr1.a |
3 | 3 |
4 include ../config.defs | 4 include ../config.defs |
5 | 5 |
6 all: ${PROGS} | 6 all: ${PROGS} |
7 | 7 |
8 gsmhr-cod-parse: cod-parse.o print-frame.o read-cod.o ${LIBHR1} | 8 gsmhr-cod-parse: cod-parse.o print-frame.o read-cod.o ${LIBHR1} |
9 ${CC} ${CFLAGS} -o $@ $^ | |
10 | |
11 gsmhr-dec-craft: dec-craft.o ${LIBHR1} | |
9 ${CC} ${CFLAGS} -o $@ $^ | 12 ${CC} ${CFLAGS} -o $@ $^ |
10 | 13 |
11 gsmhr-dec-parse: dec-parse.o print-frame.o read-dec.o ${LIBHR1} | 14 gsmhr-dec-parse: dec-parse.o print-frame.o read-dec.o ${LIBHR1} |
12 ${CC} ${CFLAGS} -o $@ $^ | 15 ${CC} ${CFLAGS} -o $@ $^ |
13 | 16 |