From 671c06e80aa847a092c600522453a8bea1482a2e Mon Sep 17 00:00:00 2001 From: Marco Gittler Date: Fri, 18 Nov 2011 14:41:19 +0100 Subject: [PATCH] removed created makefile from tree --- src/kiss_fft/Makefile | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 src/kiss_fft/Makefile diff --git a/src/kiss_fft/Makefile b/src/kiss_fft/Makefile deleted file mode 100644 index e501c5c2..00000000 --- a/src/kiss_fft/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -KFVER=129 - -doc: - @echo "Start by reading the README file. If you want to build and test lots of stuff, do a 'make testall'" - @echo "but be aware that 'make testall' has dependencies that the basic kissfft software does not" - -testall: - # The simd and int32_t types may or may not work on your machine - make -C test DATATYPE=simd CFLAGADD="$(CFLAGADD)" test - make -C test DATATYPE=int32_t CFLAGADD="$(CFLAGADD)" test - make -C test DATATYPE=int16_t CFLAGADD="$(CFLAGADD)" test - make -C test DATATYPE=float CFLAGADD="$(CFLAGADD)" test - make -C test DATATYPE=double CFLAGADD="$(CFLAGADD)" test - -tarball: clean - hg archive -r v$(KFVER) -t tgz kiss_fft$(KFVER).tar.gz - hg archive -r v$(KFVER) -t zip kiss_fft$(KFVER).zip - -clean: - cd test && make clean - cd tools && make clean - rm -f kiss_fft*.tar.gz *~ *.pyc kiss_fft*.zip - -asm: kiss_fft.s - -kiss_fft.s: kiss_fft.c kiss_fft.h _kiss_fft_guts.h - [ -e kiss_fft.s ] && mv kiss_fft.s kiss_fft.s~ || true - gcc -S kiss_fft.c -O3 -mtune=native -ffast-math -fomit-frame-pointer -unroll-loops -dA -fverbose-asm - gcc -o kiss_fft_short.s -S kiss_fft.c -O3 -mtune=native -ffast-math -fomit-frame-pointer -dA -fverbose-asm -DFIXED_POINT - [ -e kiss_fft.s~ ] && diff kiss_fft.s~ kiss_fft.s || true -- 2.39.2