comparison 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
comparison
equal deleted inserted replaced
375:6057c98d11a9 376:9b3e5be96bab
1 CC= gcc
2 CFLAGS= -O2
3 PROG= fir2freq
4 OBJS= freqresp.o readfir.o
5
6 all: ${PROG}
7
8 ${PROG}: ${OBJS}
9 ${CC} -o $@ ${OBJS} -lm
10
11 clean:
12 rm -f *.o ${PROG}