Skip to content

Commit 38b21de

Browse files
committed
introduce "make help"
1 parent ee9b936 commit 38b21de

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Makefile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,18 @@ strip-suffix = $(firstword $(subst ., ,$(1)))
9090
.PHONY: all
9191
all: build
9292

93+
.PHONY: help
94+
help:
95+
@echo "Make Routines:"
96+
@echo " - \"\" equivalent to \"build\""
97+
@echo " - build creates the entire project"
98+
@echo " - clean delete integration files and build files but not css and js files"
99+
@echo " - clean-all delete all generated files (integration test, build, css and js files)"
100+
@echo " - css rebuild only css files"
101+
@echo " - js rebuild only js files"
102+
@echo " - test run unit test"
103+
@echo " - test-sqlite run integration test for sqlite"
104+
93105
include docker/Makefile
94106

95107
.PHONY: go-check

0 commit comments

Comments
 (0)