14 lines
141 B
Makefile
14 lines
141 B
Makefile
#
|
|
# Run all tests
|
|
#
|
|
test:
|
|
node test/less-test.js
|
|
|
|
#
|
|
# Run benchmark
|
|
#
|
|
benchmark:
|
|
node benchmark/less-benchmark.js
|
|
|
|
.PHONY: test benchmark
|