all:
	gcc -I. -c fftw_test.c -o fftw_test.o
	gcc -I. -c rfftw_test.c -o rfftw_test.o
	gcc -I. -c test_main.c -o test_main.o
	gcc -lfftw test_main.o fftw_test.o -o test_fftw
	gcc -lfftw -lrfftw test_main.o rfftw_test.o -o test_rfftw

clean:
	rm -f *.o test_fftw test_rfftw
