aides-uploader/Makefile

26 lines
297 B
Makefile
Raw Permalink Normal View History

2024-11-29 14:32:44 +00:00
BINARY_NAME=aides-uploader
SRC_DIR=.
BUILD_DIR=./bin
GO=go
build:
mkdir -p $(BUILD_DIR)
$(GO) build -o $(BUILD_DIR)/$(BINARY_NAME) $(SRC_DIR)
run: build
$(BUILD_DIR)/$(BINARY_NAME)
test:
$(GO) test ./...
clean:
rm -rf $(BUILD_DIR)
deps:
$(GO) mod tidy
$(GO) mod download
all: build