1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
# Makefile for the generation of FFTW sources/Makefile
install: allfiles
sh install.sh
make clean
allfiles: Makefile.fftw sources config.c rconfig.c
config.c:
sh makeconfig.sh | indent >$@
rconfig.c:
sh makerconfig.sh | indent >$@
sources:
sh makesources.sh
gen:
make -f Makefile.genfft
Makefile.fftw:
sh makemakefile.sh
distclean: clean
clean:
rm -f *~ a.out core *.c genfft *.zi *.zo nohup.out
rm -f *.cm[xio] *.o
rm -f Makefile.fftw Makefile.rfftw
rm -f *.c
|