2013-03-06 18:56:04 +00:00
|
|
|
.PHONY: lib test
|
2013-03-05 23:25:53 +00:00
|
|
|
|
2013-03-06 18:56:04 +00:00
|
|
|
lib_sources:= $(wildcard src/*.coffee)
|
|
|
|
lib_objects:= $(subst src/, lib/, $(lib_sources:%.coffee=%.js))
|
2013-03-05 23:25:53 +00:00
|
|
|
|
|
|
|
default: build
|
|
|
|
|
2013-03-31 03:30:58 +00:00
|
|
|
build: $(lib_objects) lib/tumble.js
|
|
|
|
|
|
|
|
lib/tumble.js: src/tumble.peg
|
|
|
|
./node_modules/.bin/pegjs src/tumble.peg lib/tumble.js
|
2013-03-05 23:25:53 +00:00
|
|
|
|
2013-03-06 18:56:04 +00:00
|
|
|
$(lib_objects): lib/%.js: src/%.coffee
|
|
|
|
@mkdir -p $(@D)
|
2013-03-05 23:25:53 +00:00
|
|
|
coffee -o $(@D) -c $<
|
|
|
|
|
2013-03-31 03:30:58 +00:00
|
|
|
test: test/[0-9]*_mocha.coffee lib/tumble.js lib/parser.js
|
2013-03-06 17:57:12 +00:00
|
|
|
./node_modules/.bin/mocha -C --compilers coffee:coffee-script -u tdd $<
|
|
|
|
|
2013-03-31 03:30:58 +00:00
|
|
|
|
2013-03-05 23:25:53 +00:00
|
|
|
clean:
|
2013-03-06 18:56:04 +00:00
|
|
|
rm -fr lib
|