comparison fft/fft.js/Makefile @ 25:66f9fd5ac611

Bring in some more of the third-party code
author Chris Cannam
date Wed, 07 Oct 2015 13:46:38 +0100
parents
children
comparison
equal deleted inserted replaced
24:e705de983b67 25:66f9fd5ac611
1 TARGETS := lib/complex.js lib/node.erb.js lib/node.js
2
3 all: $(TARGETS)
4 node: lib/node.js
5
6 lib/complex.js: src/complex.erb.js
7 erb $^ > $@
8
9 lib/node.erb.js: src/node.erb.js
10 erb $^ > $@
11
12 lib/node.js: lib/node.erb.js
13 erb $^ > $@
14
15 clean:
16 rm -rf $(TARGETS)
17
18 .PHONY: all clean