1
0
Fork 0

Remove not-quite-useful Makefile in favor of plain go build

This commit is contained in:
Timothée Floure 2021-04-01 07:45:46 +02:00
parent 9f572eb5c6
commit d5fda51722
No known key found for this signature in database
GPG Key ID: 4502C902C00A1E12
2 changed files with 1 additions and 18 deletions

View File

@ -1,16 +0,0 @@
NAME=matrix-alertmanager-receiver
PREFIX?=/usr/local
all: build
getDeps:
go get -v
build:
go build
install: build
install -m 0755 $(NAME) $(PREFIX)/bin/$(NAME)
clean:
rm $(NAME)

View File

@ -13,8 +13,7 @@ Make sure you have [Go](https://golang.org/) installed (`golang-bin` package on
Fedora).
```
make getDeps
make build
go build -v
```
## Usage