1
0
Fork 0
easejs/Makefile

33 lines
490 B
Makefile
Raw Normal View History

2010-11-10 19:38:06 -05:00
PATH_BUILD=./build
PATH_TOOLS=./tools
PATH_COMBINE_OUTPUT=${PATH_BUILD}/ease.js
COMBINE=${PATH_TOOLS}/combine
2010-11-10 19:38:06 -05:00
.PHONY: test
default: combine
# create build dir
mkbuild:
mkdir -p ${PATH_BUILD}
# combine all modules into easily redistributable ease.js file (intended for
# browser)
combine: mkbuild
${COMBINE} > ${PATH_COMBINE_OUTPUT}
# run tests
2010-11-10 19:38:06 -05:00
test:
2010-11-10 21:00:38 -05:00
for test in `find ./test -name 'test-*.js'`; do \
node $${test}; \
done
# clean up build dir
clean:
rm -rf ${PATH_BUILD}