Files
scheduler/build/Makefile
2025-07-18 09:44:45 +08:00

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