1
0
Fork 0

Added make targets: default, mkbuild, combine, clean

closure/master
Mike Gerwitz 2010-12-19 23:51:22 -05:00
parent 78179c3d9d
commit 72f4dd0757
2 changed files with 26 additions and 0 deletions

1
.gitignore vendored 100644
View File

@ -0,0 +1 @@
build

View File

@ -1,7 +1,32 @@
PATH_BUILD=./build
PATH_TOOLS=./tools
PATH_COMBINE_OUTPUT=${PATH_BUILD}/ease.js
COMBINE=${PATH_TOOLS}/combine
.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
test:
for test in `find ./test -name 'test-*.js'`; do \
node $${test}; \
done
# clean up build dir
clean:
rm -rf ${PATH_BUILD}