Files
sofmani/Makefile

16 lines
155 B
Makefile

.PHONY: build
build:
go build
.PHONY: run
run:
./sofmani
.PHONY: test
test:
go test -v ./...
.PHONY: install
install: build
cp sofmani ~/.local/bin