minio/Makefile

45 lines
928 B
Makefile
Raw Normal View History

#GOPATH := $(CURDIR)/tmp/gopath
2014-11-30 22:55:10 +01:00
MAKE_OPTIONS := -s
2015-01-21 22:52:42 +01:00
ARCH := $(shell uname -s)
2014-11-01 23:20:59 +01:00
all: getdeps install
2014-11-30 22:55:10 +01:00
2014-12-04 10:56:01 +01:00
checkdeps:
@./checkdeps.sh
getdeps: checkdeps
2014-12-20 18:09:35 +01:00
@go get github.com/tools/godep && echo "Installed godep"
@go get golang.org/x/tools/cmd/cover && echo "Installed cover"
build-erasure: getdeps
@godep go generate github.com/minio-io/minio/pkg/storage/erasure
@godep go build github.com/minio-io/minio/pkg/storage/erasure
2014-12-11 09:32:32 +01:00
build-all: getdeps build-erasure
@echo "Building Libraries"
@godep go build ./...
2015-01-21 09:50:23 +01:00
test-all: build-all
@echo "Running Test Suites:"
@godep go test -race ./...
minio: build-all test-all
install: minio
@godep go install github.com/minio-io/minio && echo "Installed minio"
save: restore
2014-12-01 23:45:50 +01:00
@godep save ./...
restore:
2014-12-01 23:45:50 +01:00
@godep restore
2014-11-01 09:02:47 +01:00
env:
2014-12-01 23:45:50 +01:00
@godep go env
2014-12-01 23:45:50 +01:00
clean:
2015-01-14 21:40:43 +01:00
@echo "Cleaning up all the generated files"
@rm -fv pkg/utils/split/TESTPREFIX.*
@rm -fv cover.out
2015-01-27 22:13:25 +01:00
@rm -fv pkg/storage/erasure/*.syso