diff options
author | P. J. McDermott <pj@pehjota.net> | 2017-01-06 18:21:11 (EST) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2017-01-06 18:21:11 (EST) |
commit | 96f8d2b36f627b1ef96248fac6acc2efc5e0ebd4 (patch) | |
tree | 0b8df3faee3cf4f98e7650aebd37c1f9ce6f725f | |
parent | 6848fd9e9ec1cc8360037f8ae46f8557f515434b (diff) | |
download | decmath.js-96f8d2b36f627b1ef96248fac6acc2efc5e0ebd4.zip decmath.js-96f8d2b36f627b1ef96248fac6acc2efc5e0ebd4.tar.gz decmath.js-96f8d2b36f627b1ef96248fac6acc2efc5e0ebd4.tar.bz2 |
Makefile: New file
-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: |