Skip to content

Commit adcccce

Browse files
committed
revision2
1 parent 882bc5a commit adcccce

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

Makefile

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
setup:
2+
make -C app setup
3+
4+
run-dist:
5+
make -C app run-dist
6+
7+
start:
8+
make -C app start
9+
10+
build:
11+
make -C app build
12+
13+
install:
14+
make -C app install
15+
16+
clean:
17+
make -C app clean
18+
19+
test:
20+
make -C app test
21+
22+
report:
23+
make -C app report
24+
25+
lint:
26+
make -C app lint
27+
28+
build-run:
29+
make -C app build-run
30+
31+
check-deps:
32+
make -C app check-deps
33+
34+
.PHONY: build

0 commit comments

Comments
 (0)