Skip to content

Make

使用另一個 target

start:
    echo this is start
use-start:
    echo this is use-start
    $(MAKE) start

target 依賴另一個 target

install: 
    pip install -r requirements.txt
start: install
    mkdocs serve

Reference


Last update: July 17, 2023
Created: July 17, 2023