Skip to content

Commit 26a1cce

Browse files
committed
build(makefile): add dep and ci targets
- Add 'dep' target to the Makefile for dependency management - Add 'ci' target to run continuous integration tasks - Update help section to mention new targets
1 parent aa225e2 commit 26a1cce

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@ include z-gradle-base.mk
1010
include dashboard/z-gradle.mk
1111
include designpatterns/z-gradle.mk
1212

13+
.PHONY: dep
14+
dep: init
15+
16+
.PHONY: ci
17+
ci: designpatternsTestInfo dashboardTestInfo
18+
$(info finish run ci)
19+
1320
.PHONY: help
1421
help: helpGradleBase help-dashboard-gradle help-designpatterns-gradle
1522
@echo "more task see makefile!"

0 commit comments

Comments
 (0)