Files
node/Nodejs-Socketio-Mysql-Demo/node_modules/mysql/Makefile
2012-05-25 09:03:56 -04:00

14 lines
306 B
Makefile

SHELL := /bin/bash
NODE = node
test:
@$(NODE) test/run.js
benchmark-node-mysql:
@find benchmark/node-mysql/*.js | xargs -n 1 -t node
benchmark-php:
@find benchmark/php/*.php | xargs -n 1 -t php
benchmark-all: benchmark-node-mysql benchmark-php
benchmark: benchmark-node-mysql
.PHONY: test benchmark