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 a8d4b6c commit 1de2ca2Copy full SHA for 1de2ca2
Makefile
@@ -16,11 +16,16 @@ COMMITHASH := `git rev-parse --short HEAD 2>/dev/null`
16
DATE := `date "+%FT%T%z"`
17
18
.PHONY: all
19
-all: test
+all: build_app test
20
21
init:
22
@echo "$(ATTN_COLOR)==> init $(NO_COLOR)"
23
24
+.PHONY: build_app
25
+build_app:
26
+ @echo "$(ATTN_COLOR)==> build_app $(NO_COLOR)"
27
+ @python setup.py build dist
28
+
29
.PHONY: test
30
test:
31
@echo "$(ATTN_COLOR)==> test $(NO_COLOR)"
0 commit comments