changeset 36:6a99a85fd815

Text update, add Makefile as dependency
author Chris Cannam
date Tue, 10 Nov 2015 09:50:09 +0000
parents c795fab4c4be
children a47f895d79c0
files fft/index.html fft/nayukic/Makefile.emscripten
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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 @@
   <ul>
     <li><b>Nayuki</b>: in-place double-precision (native JS number type) complex-complex. Around 7kb.</li>
     <li><b>Nayuki (obj)</b>: Nayuki with the sin/cos tables pre-calculated on object construction. Around 4kb.</li>
-    <li><b>Nayuki (C)</b>: Nayuki C implementation compiled with Emscripten. Does not have pre-calculated sin/cos tables.</li>
+    <li><b>Nayuki (C)</b>: Nayuki C implementation compiled with Emscripten, with the sin/cos tables pre-calculated.</li>
     <li><b>Nockert</b>: double-precision real-complex. Around 25kb.</li>
     <li><b>Dntj</b>: double-precision complex-complex. Forward
     transform is scaled and I've scaled it back again here. Around 10kb.</li>
--- 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 \