add Makefile

This commit is contained in:
Bradley Cicenas 2017-03-18 00:38:03 +00:00
parent a135a67c06
commit 26b88a9790
2 changed files with 27 additions and 2 deletions

26
Makefile Normal file
View File

@ -0,0 +1,26 @@
NAME=ctop
VERSION=$(shell cat VERSION)
BUILD=$(shell git rev-parse --short HEAD)
LD_FLAGS="-w -X main.version=$(VERSION) -X main.build=$(BUILD)"
clean:
rm -rf build/ release/
build:
glide install
CGO_ENABLED=0 go build -tags release -ldflags $(LD_FLAGS) -o ctop
build-all:
mkdir -p build
GOOS=darwin GOARCH=amd64 go build -tags release -ldflags $(LD_FLAGS) -o build/ctop-$(VERSION)-darwin-amd64
GOOS=linux GOARCH=amd64 go build -tags release -ldflags $(LD_FLAGS) -o build/ctop-$(VERSION)-linux-amd64
GOOS=linux GOARCH=arm go build -tags release -ldflags $(LD_FLAGS) -o build/ctop-$(VERSION)-linux-arm
release:
mkdir release
go get github.com/progrium/gh-release/...
cp build/* release
gh-release create bcicen/$(NAME) $(VERSION) \
$(shell git rev-parse --abbrev-ref HEAD) $(VERSION)
.PHONY: build

View File

@ -49,8 +49,7 @@ To build `ctop` from source, ensure you have a recent version of [glide](http://
```bash
git clone https://github.com/bcicen/ctop.git $GOPATH/src/github.com/bcicen/ctop && \
cd $GOPATH/src/github.com/bcicen/ctop && \
glide install && \
go build
make build
```
To build a minimal Docker image containing only `ctop`, follow the build instructions above up through `glide install`, then: