mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-04 23:23:43 +02:00
489acc49a5
- usrp/fft.c: utility to read a set of samples obtained with usrp2_rx_cfile.py and to perform a Fourier transform on them - usrp/Makefile: use LDLIBS for libraries, not LDFLAGS - usrp/Makefile: added "fft"
9 lines
133 B
Makefile
9 lines
133 B
Makefile
CFLAGS=-Wall -O9
|
|
LDLIBS=-lm
|
|
LDLIBS_fft=-lfftw3 -lm
|
|
|
|
all: peak avg fft
|
|
|
|
fft: fft.c
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^ $(LDLIBS_fft)
|