comparison trau-decode/Makefile @ 2:b2ef2c80fef1

trau-parse: add FR decoding
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 24 May 2024 08:11:25 +0000
parents Makefile@131e0f1972bb
children d9c095357c32
comparison
equal deleted inserted replaced
1:b0dcd48a1c8a 2:b2ef2c80fef1
1 CC= gcc
2 CFLAGS= -O2
3 PROGS= trau-parse
4
5 all: ${PROGS}
6
7 trau-parse: parse-fr.o parse-main.o
8 ${CC} ${CFLAGS} -o $@ $^ -lgsmfr2
9
10 clean:
11 rm -f *.o ${PROGS}