marked/Makefile

16 lines
288 B
Makefile
Raw Normal View History

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