mirror of
https://github.com/safedep/pmg.git
synced 2026-08-03 07:24:09 +02:00
* docs: README update * docs: introduce CONTRIBUTING.md * docs: introduce MAINTAINERS.txt
20 lines
200 B
Makefile
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 ./...
|