annotate 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
rev   line source
Chris@25 1 TARGETS := lib/complex.js lib/node.erb.js lib/node.js
Chris@25 2
Chris@25 3 all: $(TARGETS)
Chris@25 4 node: lib/node.js
Chris@25 5
Chris@25 6 lib/complex.js: src/complex.erb.js
Chris@25 7 erb $^ > $@
Chris@25 8
Chris@25 9 lib/node.erb.js: src/node.erb.js
Chris@25 10 erb $^ > $@
Chris@25 11
Chris@25 12 lib/node.js: lib/node.erb.js
Chris@25 13 erb $^ > $@
Chris@25 14
Chris@25 15 clean:
Chris@25 16 rm -rf $(TARGETS)
Chris@25 17
Chris@25 18 .PHONY: all clean