Experimenting audioContext for Apple (Safari)
[sgc3.git] / fft.js / Makefile
blob8b38358153c476ae5a6fafae542d1d1bcc622358
1 TARGETS := lib/complex.js lib/node.erb.js lib/node.js
3 all: $(TARGETS)
4 node: lib/node.js
6 lib/complex.js: src/complex.erb.js
7 erb $^ > $@
9 lib/node.erb.js: src/node.erb.js
10 erb $^ > $@
12 lib/node.js: lib/node.erb.js
13 erb $^ > $@
15 clean:
16 rm -rf $(TARGETS)
18 .PHONY: all clean