Windshaft-cartodb/Makefile

37 lines
656 B
Makefile
Raw Normal View History

2015-02-27 00:00:50 +08:00
SHELL=/bin/bash
pre-install:
@$(SHELL) ./scripts/check-node-canvas.sh
2012-07-10 00:56:09 +08:00
all:
2015-02-27 00:00:50 +08:00
@$(SHELL) ./scripts/install.sh
2012-07-10 00:56:09 +08:00
2012-07-10 21:56:40 +08:00
clean:
rm -rf node_modules/*
distclean: clean
rm config.status*
config.status--test:
./configure --environment=test
config/environments/test.js: config.status--test
./config.status--test
test: config/environments/test.js
@echo "***tests***"
2015-02-27 00:00:50 +08:00
@$(SHELL) ./run_tests.sh ${RUNTESTFLAGS} \
test/unit/cartodb/*.js \
test/unit/cartodb/cache/model/*.js \
test/integration/*.js \
test/acceptance/*.js \
test/acceptance/cache/*.js
jshint:
@echo "***jshint***"
@./node_modules/.bin/jshint lib/
check: test
2015-02-27 00:00:50 +08:00
.PHONY: pre-install test