mirror of
https://github.com/mborgerding/kissfft.git
synced 2025-07-19 05:24:29 -04:00
made some things const -- doesn't really have an effect under gcc, but it might under some compilers
added asm target to check to see if the assembly code changes
This commit is contained in:
8
Makefile
8
Makefile
@ -29,6 +29,10 @@ dist: tarball
|
||||
|
||||
upload: dist
|
||||
ncftpput upload.sourceforge.net incoming $(ZIPFILE) $(TARBALL)
|
||||
|
||||
asm:
|
||||
|
||||
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 -march=pentiumpro -ffast-math -fomit-frame-pointer -dA -fverbose-asm
|
||||
[ -e kiss_fft.s~ ] && diff kiss_fft.s~ kiss_fft.s || true
|
||||
|
Reference in New Issue
Block a user