Files
pmg/Makefile
T

20 lines
200 B
Makefile
Raw Normal View History

2025-04-21 21:13:23 +05:30
GO := go
BIN_DIR := bin
BIN := $(BIN_DIR)/pmg
.PHONY: all
all: pmg
pmg: create_bin
$(GO) build -o $(BIN) main.go
create_bin:
mkdir -p $(BIN_DIR)
clean:
rm -rf $(BIN_DIR)
test:
go test ./...