mirror of
https://github.com/chenasraf/sofmani.git
synced 2026-05-18 01:29:02 +00:00
16 lines
155 B
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
|