This commit is contained in:
2025-07-18 11:12:52 +08:00
parent 72f022a727
commit 519dfaeb13
12 changed files with 77 additions and 65 deletions

View File

@@ -1,4 +1,4 @@
.PHONY: clean help
.PHONY: clean help run build
help:
./build/Help
@@ -6,7 +6,14 @@ help:
clean:
rm -rf $(TARGET_PATH)/*
scheduler:
FrontEnd:
BackEnd: FrontEnd
cd $(SOURCE_PATH) && go build -o $(TARGET_PATH)/scheduler
all: scheduler
build: BackEnd
run:
$(TARGET_PATH)/scheduler --config $(CONFIG_FILE_PATH) --csv-path $(CSV_PATH)