Windshaft-cartodb/Makefile
Sandro Santilli 6e8bfffff1 Merge branch 'master' into develop
Conflicts:
	Makefile
	NEWS.md
	package.json
2012-12-21 13:30:14 +01:00

26 lines
567 B
Makefile

all:
npm install
clean:
rm -rf node_modules/*
config/environments/test.js: config/environments/test.js.example
./configure
check-local: config/environments/test.js
./run_tests.sh ${RUNTESTFLAGS} \
test/unit/cartodb/redis_pool.test.js \
test/unit/cartodb/req2params.test.js \
test/acceptance/cache_validator.js \
test/acceptance/server.js
check-submodules:
for sub in windshaft grainstore mapnik; do \
test -e node_modules/$${sub} && make -C node_modules/$${sub} check; \
done
check-full: check-local check-submodules
check: check-local