瀏覽代碼

修改Makefile

leon 3 周之前
父節點
當前提交
7a6f4fcdb5
共有 1 個文件被更改,包括 7 次插入4 次删除
  1. 7 4
      Makefile

+ 7 - 4
Makefile

@@ -14,9 +14,12 @@ log:
 	@tail -f log/runtime.log
 
 help:
-	@echo "make start   => start server"
-	@echo "make status  => check server status"
-	@echo "make log     => print log"
-	@echo "make help    => help"
+	@echo "Usage: make <target>"
+	@echo ""
+	@echo "make start      Start server"
+	@echo "make status     Check server status"
+	@echo "make log        Print log"
+	@echo "make help       Show this help message"
+	@echo ""
 
 .PHONY: start status help log