FreeCalypso > hg > gsm-codec-lib
comparison miscutil/Makefile @ 23:baadb1cb744d
new debug utility gsmrec-dump
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 20 Nov 2022 08:05:32 +0000 |
parents | frtest/Makefile@7960744ba19c |
children | edd2e20e7090 |
comparison
equal
deleted
inserted
replaced
22:3db7af1249cb | 23:baadb1cb744d |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 | |
3 PROGS= gsmrec-dump | |
4 LIBTEST=../libtest/libtest.a | |
5 INSTBIN=/opt/freecalypso/bin | |
6 | |
7 all: ${PROGS} | |
8 | |
9 gsmrec-dump: gsmrec-dump.o ${LIBTEST} | |
10 ${CC} ${CFLAGS} -o $@ gsmrec-dump.o ${LIBTEST} -lgsm | |
11 | |
12 install: | |
13 mkdir -p ${INSTBIN} | |
14 install -c ${PROGS} ${INSTBIN} | |
15 | |
16 clean: | |
17 rm -f *.o *.out ${PROGS} |