Skip to content

Commit 1de2ca2

Browse files
committed
make command for build_app
1 parent a8d4b6c commit 1de2ca2

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,16 @@ COMMITHASH := `git rev-parse --short HEAD 2>/dev/null`
1616
DATE := `date "+%FT%T%z"`
1717

1818
.PHONY: all
19-
all: test
19+
all: build_app test
2020

2121
init:
2222
@echo "$(ATTN_COLOR)==> init $(NO_COLOR)"
2323

24+
.PHONY: build_app
25+
build_app:
26+
@echo "$(ATTN_COLOR)==> build_app $(NO_COLOR)"
27+
@python setup.py build dist
28+
2429
.PHONY: test
2530
test:
2631
@echo "$(ATTN_COLOR)==> test $(NO_COLOR)"

0 commit comments

Comments
 (0)