OBJS = fftanal.o sunrf.o memalloc.o fft_net.o

fftanal: $(OBJS)
	cc $(CFLAGS) -o fftanal $(OBJS) -lm

testrf: testrf.o sunrf.o memalloc.o
	cc $(CFLAGS) -o testrf testrf.o sunrf.o memalloc.o -lm

clean:
	rm -f *.o
