mirror of
https://github.com/chenasraf/sofmani.git
synced 2026-05-17 17:28:04 +00:00
20 lines
219 B
Makefile
20 lines
219 B
Makefile
.PHONY: build
|
|
build:
|
|
go build
|
|
|
|
.PHONY: run
|
|
run: build
|
|
./sofmani
|
|
|
|
.PHONY: test
|
|
test:
|
|
go test -v ./...
|
|
|
|
.PHONY: install
|
|
install: build
|
|
cp sofmani ~/.local/bin
|
|
|
|
.PHONY: uninstall
|
|
uninstall:
|
|
rm -f ~/.local/bin/sofmani
|