mirror of
https://github.com/Awuqing/BackupX.git
synced 2026-06-07 10:49:43 +08:00
first commit
This commit is contained in:
14
server/Makefile
Normal file
14
server/Makefile
Normal file
@@ -0,0 +1,14 @@
|
||||
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 ./...
|
||||
Reference in New Issue
Block a user