Files
BackupX/server/Makefile
2026-03-17 13:29:09 +08:00

15 lines
190 B
Makefile

APP_NAME=backupx
BUILD_DIR=./bin
.PHONY: build run test
build:
mkdir -p $(BUILD_DIR)
go build -o $(BUILD_DIR)/$(APP_NAME) ./cmd/backupx
run:
go run ./cmd/backupx
test:
go test ./...