Makefile 的另一個選擇 Taskfile
在 macOS 環境,除了使用 Makefile 之外,還有另一個選擇 Taskfile。
環境 Environment
- macOS 12.3.1
- Homebrew 3.4.5
安裝 Taskfile
Use brew
command to install task
1 | $ brew install go-task/tap/go-task |
新增 Taskfile
Create Taskfile.yml
and insert the following,
1 | version: "3" |
Display the list of available tasks:
1 | $ task --list |
執行 Taskfile command
1 | $ task run |
進階使用可參考 Introduction to Taskfile: a Makefile alternative 。