# HG changeset patch
# User Chris Cannam
# Date 1447149009 0
# Node ID 6a99a85fd8152edc81b8c8d4f7682d59b0dd951c
# Parent c795fab4c4befaf63038954123d67f67f1157d83
Text update, add Makefile as dependency
diff -r c795fab4c4be -r 6a99a85fd815 fft/index.html
--- a/fft/index.html Tue Nov 10 07:30:50 2015 +0000
+++ b/fft/index.html Tue Nov 10 09:50:09 2015 +0000
@@ -60,7 +60,7 @@
- Nayuki: in-place double-precision (native JS number type) complex-complex. Around 7kb.
- Nayuki (obj): Nayuki with the sin/cos tables pre-calculated on object construction. Around 4kb.
- - Nayuki (C): Nayuki C implementation compiled with Emscripten. Does not have pre-calculated sin/cos tables.
+ - Nayuki (C): Nayuki C implementation compiled with Emscripten, with the sin/cos tables pre-calculated.
- Nockert: double-precision real-complex. Around 25kb.
- Dntj: double-precision complex-complex. Forward
transform is scaled and I've scaled it back again here. Around 10kb.
diff -r c795fab4c4be -r 6a99a85fd815 fft/nayukic/Makefile.emscripten
--- a/fft/nayukic/Makefile.emscripten Tue Nov 10 07:30:50 2015 +0000
+++ b/fft/nayukic/Makefile.emscripten Tue Nov 10 09:50:09 2015 +0000
@@ -1,5 +1,5 @@
-NayukiCFFT.js: fft.c fft.h
+NayukiCFFT.js: fft.c fft.h Makefile.emscripten
emcc -O3 -I. \
--memory-init-file 0 \
-s NO_FILESYSTEM=1 \