We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 882bc5a commit adcccceCopy full SHA for adcccce
Makefile
@@ -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