view fir/Makefile @ 376:9b3e5be96bab

fir2freq: a tool for analyzing captured FIR coefficient sets
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 02 Aug 2021 04:59:46 +0000
parents
children
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROG=	fir2freq
OBJS=	freqresp.o readfir.o

all:	${PROG}

${PROG}:	${OBJS}
	${CC} -o $@ ${OBJS} -lm

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