marked/Makefile

16 lines
288 B
Makefile
Raw Normal View History

2011-08-14 02:40:57 -05:00
all:
@cp lib/marked.js marked.js
@uglifyjs --comments '/\*[^\0]+?Copyright[^\0]+?\*/' -o marked.min.js lib/marked.js
2011-08-14 02:40:57 -05:00
clean:
@rm marked.js
@rm marked.min.js
bench:
@node test --bench
2018-01-08 19:41:33 +01:00
man/marked.1.txt:
groff -man -Tascii man/marked.1 | col -b > man/marked.1.txt
2011-08-14 02:40:57 -05:00
.PHONY: clean all