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-04-17 17:10:06 +00:00
|
|
|
build: $(lib_objects) lib/tokenizer.js
|
2013-03-31 03:30:58 +00:00
|
|
|
|
2013-04-17 17:10:06 +00:00
|
|
|
lib:
|
|
|
|
mkdir -p lib
|
2013-03-05 23:25:53 +00:00
|
|
|
|
2013-04-17 17:10:06 +00:00
|
|
|
lib/tumble.js: lib src/tumble.peg
|
|
|
|
./node_modules/.bin/pegjs src/tumble.peg lib/tumble.js
|
|
|
|
|
|
|
|
$(lib_objects): lib lib/%.js: src/%.coffee
|
2013-03-06 18:56:04 +00:00
|
|
|
@mkdir -p $(@D)
|
2013-03-05 23:25:53 +00:00
|
|
|
coffee -o $(@D) -c $<
|
|
|
|
|
2013-04-17 17:10:06 +00:00
|
|
|
test: test/[0-9]*_mocha.coffee lib/tumble.js
|
2013-03-31 03:45:12 +00:00
|
|
|
./node_modules/.bin/mocha -R tap -C --compilers coffee:coffee-script -u tdd $<
|
2013-03-06 17:57:12 +00:00
|
|
|
|
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
|