FreeCalypso > hg > gsm-codec-lib
comparison hrutil/Makefile @ 562:901753f59f88
gsmhr-cod-parse: read native endian by default
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 12 Feb 2025 00:17:56 +0000 |
parents | 707d6f7a54dc |
children | 30c57cf6e87d |
comparison
equal
deleted
inserted
replaced
561:cf62fe9fac3a | 562:901753f59f88 |
---|---|
1 PROGS= gsmhr-cod-parse gsmhr-cod2hex gsmhr-dec-craft gsmhr-dec-parse tw5b-dump | 1 PROGS= gsmhr-cod-parse gsmhr-cod2hex gsmhr-dec-craft gsmhr-dec-parse tw5b-dump |
2 LIBHR1= ../libgsmhr1/libgsmhr1.a | 2 LIBHR1= ../libgsmhr1/libgsmhr1.a |
3 LIBTEST=../libtest/libtest.a | 3 LIBTEST=../libtest/libtest.a |
4 LIBS= ${LIBHR1} ${LIBTEST} | |
4 | 5 |
5 include ../config.defs | 6 include ../config.defs |
6 | 7 |
7 all: ${PROGS} | 8 all: ${PROGS} |
8 | 9 |
9 gsmhr-cod-parse: cod-parse.o print-frame.o read-cod.o ${LIBHR1} | 10 gsmhr-cod-parse: cod-parse.o print-frame.o read-cod.o ${LIBS} |
10 ${CC} ${CFLAGS} -o $@ $^ | 11 ${CC} ${CFLAGS} -o $@ $^ |
11 | 12 |
12 gsmhr-cod2hex: cod2hex.o read-cod.o tw5b-out-cod.o ${LIBHR1} ${LIBTEST} | 13 gsmhr-cod2hex: cod2hex.o read-cod.o tw5b-out-cod.o ${LIBS} |
13 ${CC} ${CFLAGS} -o $@ $^ | 14 ${CC} ${CFLAGS} -o $@ $^ |
14 | 15 |
15 gsmhr-dec-craft: dec-craft.o ${LIBHR1} | 16 gsmhr-dec-craft: dec-craft.o ${LIBHR1} |
16 ${CC} ${CFLAGS} -o $@ $^ | 17 ${CC} ${CFLAGS} -o $@ $^ |
17 | 18 |
18 gsmhr-dec-parse: dec-parse.o print-frame.o read-dec.o ${LIBHR1} | 19 gsmhr-dec-parse: dec-parse.o print-frame.o read-dec.o ${LIBHR1} |
19 ${CC} ${CFLAGS} -o $@ $^ | 20 ${CC} ${CFLAGS} -o $@ $^ |
20 | 21 |
21 tw5b-dump: print-frame.o tw5b-dump.o ${LIBHR1} ${LIBTEST} | 22 tw5b-dump: print-frame.o tw5b-dump.o ${LIBS} |
22 ${CC} ${CFLAGS} -o $@ $^ | 23 ${CC} ${CFLAGS} -o $@ $^ |
23 | 24 |
24 install: | 25 install: |
25 mkdir -p ${DESTDIR}${bindir} | 26 mkdir -p ${DESTDIR}${bindir} |
26 install -c ${PROGS} ${DESTDIR}${bindir} | 27 install -c ${PROGS} ${DESTDIR}${bindir} |