You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
363 B
20 lines
363 B
GOPATH := $(CURDIR)/tmp/gopath
|
|
|
|
all: build copy_bin
|
|
|
|
copy_bin:
|
|
cp tmp/gopath/bin/* bin/
|
|
|
|
stage_build:
|
|
mkdir -p $(GOPATH)
|
|
mkdir -p bin
|
|
mkdir -p tmp/gopath/src/github.com/minios/minios
|
|
rsync -a . tmp/gopath/src/github.com/minios/minios/
|
|
rsync -a third_party/* tmp/gopath
|
|
|
|
|
|
build: stage_build
|
|
go install github.com/minios/minios/minio
|
|
|
|
clean:
|
|
rm -rf tmp bin
|
|
|