1all: fftw.mex
2
3# This variable should be set to the directory containing
4# libfftw.a and fftw.h:
5FFTWDIR = ../fftw
6
7fftw.mex:
8	mex fftw.c -I${FFTWDIR} -L${FFTWDIR}/.libs -lfftw
9