diff trau-ul-prep/Makefile @ 19:4ab8762be333

trau-ul-prep: starting with gsmx2tsrc program
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 23 Jun 2024 21:55:03 +0000
parents trau-decode/Makefile@0565aaa84b17
children 8957383370c5
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/trau-ul-prep/Makefile	Sun Jun 23 21:55:03 2024 +0000
@@ -0,0 +1,11 @@
+CC=	gcc
+CFLAGS=	-O2
+PROGS=	gsmx2tsrc
+
+all:	${PROGS}
+
+gsmx2tsrc:	binreader.o gsmx2tsrc.o
+	${CC} ${CFLAGS} -o $@ $^ -lgsmfr2 -lgsmefr
+
+clean:
+	rm -f *.o ${PROGS}