1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2024-07-01 02:27:38 +03:00
ben-wpan/usrp/Makefile
Werner Almesberger 489acc49a5 usrp/fft: one more analysis tool for antenna measurements
- 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"
2010-11-16 20:28:03 -03:00

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)