wallet-core/node_modules/marked/Makefile

16 lines
288 B
Makefile
Raw Normal View History

2017-05-24 15:10:37 +02:00
all:
@cp lib/marked.js marked.js
@uglifyjs --comments '/\*[^\0]+?Copyright[^\0]+?\*/' -o marked.min.js lib/marked.js
clean:
@rm marked.js
@rm marked.min.js
bench:
@node test --bench
2018-09-20 02:56:13 +02:00
man/marked.1.txt:
groff -man -Tascii man/marked.1 | col -b > man/marked.1.txt
2017-05-24 15:10:37 +02:00
.PHONY: clean all