Files
pmg/Makefile
T
Sahil BansalandGitHub f7855e99a2 docs: add CONTRIBUTORS and MAINTAINERS files, update README (#18)
* docs: README update

* docs: introduce CONTRIBUTING.md

* docs: introduce MAINTAINERS.txt
2025-05-11 22:42:27 +05:30

20 lines
200 B
Makefile

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 ./...