summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 5e800d5e713520fe86df7b1ee26d980ff5fab538 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
V = 0
REPORTER_0 = progress
REPORTER_1 = spec
REPORTER = $(REPORTER_$(V))

all: lib/decmath.min.js

test: FORCE
	mocha --reporter $(REPORTER)

lib/decmath.min.js: lib/decmath.js
	uglifyjs --mangle --comments='/@licstart/' -o $@ $<

# Portable ".PHONY"
FORCE: