diff miscutil/Makefile @ 220:c4c45148cde1

miscutil: new program pcm16-to-ulaw
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 22 Apr 2023 20:57:11 +0000
parents dc52c3857bf7
children 6555dae764b3
line wrap: on
line diff
--- a/miscutil/Makefile	Sat Apr 22 20:34:49 2023 +0000
+++ b/miscutil/Makefile	Sat Apr 22 20:57:11 2023 +0000
@@ -1,6 +1,6 @@
 CC=	gcc
 CFLAGS=	-O2
-PROGS=	gsmrec-dump pcm16-raw2wav pcm16-to-alaw pcm16-wav2raw
+PROGS=	gsmrec-dump pcm16-raw2wav pcm16-to-alaw pcm16-to-ulaw pcm16-wav2raw
 LIBEFR=	../libgsmefr/libgsmefr.a
 LIBTEST=../libtest/libtest.a
 INSTBIN=/opt/freecalypso/bin
@@ -16,6 +16,9 @@
 pcm16-to-alaw:	pcm16-to-alaw.c
 	${CC} ${CFLAGS} -o $@ $@.c
 
+pcm16-to-ulaw:	pcm16-to-ulaw.c
+	${CC} ${CFLAGS} -o $@ $@.c
+
 pcm16-wav2raw:	wav2raw.o ${LIBTEST}
 	${CC} ${CFLAGS} -o $@ wav2raw.o ${LIBTEST}