22 lines
263 B
Makefile
22 lines
263 B
Makefile
.PHONY: build test unit integration clean
|
|
|
|
build:
|
|
go build -o shout .
|
|
|
|
test: unit integration
|
|
|
|
unit:
|
|
go test ./...
|
|
|
|
integration: build
|
|
./shout test
|
|
|
|
clean:
|
|
rm -f shout
|
|
|
|
install: build
|
|
sudo cp ./shout /usr/local/bin
|
|
|
|
uninstall:
|
|
sudo rm /usr/local/bin/shout
|