chromaprint-fixed
Version:
A JavaScript implementation of AcoustID Chromaprint
27 lines (17 loc) • 320 B
Plain Text
PATH := ./node_modules/.bin:${PATH}
.PHONY : init clean-docs clean build test dist publish
init:
npm install
docs:
docco src/*.coffee
clean-docs:
rm -rf docs/
clean: clean-docs
rm -rf lib/ test/*.js
build:
coffee -o lib/ -c src/
test:
cake test
dist: clean init docs build test
publish: dist
npm publish