File: Makefile

package info (click to toggle)
node-remark-slide 0.15.0%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 488 kB
  • sloc: javascript: 3,726; makefile: 20
file content (16 lines) | stat: -rw-r--r-- 170 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
all: deps
	node make all

deps:
	npm install

test:
	node make test

bundle:
	node make bundle

highlighter:
	node make highlighter

.PHONY: deps test bundle highlighter