!7 添加Makefile帮助命令;修改一点小错误

Merge pull request !7 from a-alpha/alpha-dev
This commit is contained in:
a-alpha 2022-10-25 15:47:17 +00:00 committed by Gitee
commit 1d3a76c6f9
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 16 additions and 3 deletions

View File

@ -116,4 +116,20 @@ end-realclean:
@echo " >>> Cleaned project successfully"
@echo "----------------------------------------------------------------"
################################################################
# help
help:
@echo
@echo "----------------------------------------------------------------"
@echo " >>> Help"
@echo "----------------------------------------------------------------"
@echo "Building targets:"
@echo "all -- build genmai source tree."
@echo "build -- build all source tree."
@echo
@echo "Cleaning targets:"
@echo "clean -- remove 'build' directory"
@echo "realclean -- clean everything was built"
@echo
.PHONY: all genmai

View File

@ -43,6 +43,3 @@ func (this *ConfigParserJSON) parse(path string) error {
// JSON::unmarshell(path)
return nil
}
func Test2() {
}