diff options
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..fa37aa5 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +all: lib/decmath.min.js + +test: FORCE + mocha + +lib/decmath.min.js: lib/decmath.js + uglifyjs --comments='/@licstart/' -o $@ $< + +# Portable ".PHONY" +FORCE: |