view trau-decode/Makefile @ 26:f80e64139670 default tip

trau-ul-decomp program written
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 24 Jun 2024 01:50:02 +0000
parents 0565aaa84b17
children
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	trau-extr trau-parse

all:	${PROGS}

trau-extr:	extr-fr.o extr-efr.o extr-main.o
	${CC} ${CFLAGS} -o $@ $^ -lgsmfr2

trau-parse:	crc8gen.o parse-fr.o parse-efr.o parse-main.o
	${CC} ${CFLAGS} -o $@ $^ -lgsmfr2 -lgsmefr

clean:
	rm -f *.o ${PROGS}