-
Notifications
You must be signed in to change notification settings - Fork 79
/
Makefile
55 lines (44 loc) · 856 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
all: install
.PHONY: all
install:
npm install .
./jake dep
.PHONY: install
test:
# Problem? Type `make install` first.
npm test
.PHONY: test
spec:
# Problem? Type `make install` first.
./jake test
.PHONY: spec
coverage:
# Problem? Type `make install` first.
./jake coverage
.PHONY: coverage
html:
# Problem? Type `make install` first.
./jake html
.PHONY: html
html-api:
# Problem? Type `make install` first.
./jake html-api
.PHONY: html-api
lint:
# Problem? Type `make install` first.
./jake lint
.PHONY: lint
site: clean html-api html coverage
.PHONY: site
release-dep:
# Problem? Type `make install` first.
./jake release-dep
.PHONY: release-dep
clean:
# Problem? Type `make install` first.
./jake clean
.PHONY: clean
maintainer-clean:
# Problem? Type `make install` first.
./jake maintainer-clean
.PHONY: maintainer-clean