File: Makefile

package info (click to toggle)
node-marked 4.2.3%2Bds%2B~4.0.7-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,116 kB
  • sloc: javascript: 8,176; makefile: 19; sh: 16
file content (15 lines) | stat: -rw-r--r-- 292 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
all:
	@cp lib/marked.cjs marked.cjs
	@uglifyjs --comments '/\*[^\0]+?Copyright[^\0]+?\*/' -o marked.min.js lib/marked.cjs

clean:
	@rm marked.cjs
	@rm marked.min.js

bench:
	@node test --bench

man/marked.1.txt:
	groff -man -Tascii man/marked.1 | col -b > man/marked.1.txt

.PHONY: clean all