This repository has been archived on 2024-05-09. You can view files and clone it, but cannot push or open issues or pull requests.
OntVacStat/Makefile
2021-06-15 11:42:07 -04:00

17 lines
215 B
Makefile

build:
go build -ldflags "-s -w" -o bin/ontvacstat main.go
debug:
go build -o bin/ontvacstat-debug main.go
all: build debug
run:
go run main.go
clean:
rm -f bin/*
install:
cp bin/ontvacstat /usr/local/bin