diff options
-rw-r--r-- | Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,7 +1,12 @@ +V = 0 +REPORTER_0 = progress +REPORTER_1 = spec +REPORTER = $(REPORTER_$(V)) + all: lib/decmath.min.js test: FORCE - mocha --reporter spec + mocha --reporter $(REPORTER) lib/decmath.min.js: lib/decmath.js uglifyjs --comments='/@licstart/' -o $@ $< |