mirror of
https://github.com/ZSCNetSupportDept/scheduler.git
synced 2025-10-28 04:25:03 +08:00
13 lines
160 B
Makefile
13 lines
160 B
Makefile
.PHONY: clean help
|
|
|
|
help:
|
|
./build/Help
|
|
|
|
clean:
|
|
rm -rf $(TARGET_PATH)/*
|
|
|
|
scheduler:
|
|
cd $(SOURCE_PATH) && go build -o $(TARGET_PATH)/scheduler
|
|
|
|
all: scheduler
|