UNPKG
fft
Version:
latest (0.2.1)
0.2.1
0.2.0
0.1.1
0.1.0
A Fast Fourier Transform library for JS.
JensNockert/fft.js
fft
/
Makefile
19 lines
(12 loc)
•
274 B
Plain Text
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
TARGETS := lib/complex.js lib/node.erb.js lib/node.js
all:
$(TARGETS)
node: lib/node.js
lib/complex.js: src/complex.erb.js
erb
$^
>
$@
lib/node.erb.js: src/node.erb.js
erb
$^
>
$@
lib/node.js: lib/node.erb.js
erb
$^
>
$@
clean:
rm -rf
$(TARGETS)
.PHONY
: all clean