mirror of
https://github.com/minio/minio.git
synced 2024-12-27 15:45:55 -05:00
432275e966
- pkg/{subsystem}/{package} style - modify Makefile to reflect the new style, consolidate various entries - add a dummy ``main.go`` at top level
20 lines
289 B
Makefile
20 lines
289 B
Makefile
all: build test
|
|
.PHONY: all
|
|
|
|
SYSTEM_NAME := $(shell uname -s)
|
|
|
|
test:
|
|
@godep go test -race -coverprofile=cover.out
|
|
|
|
isal/isal-l.a:
|
|
ifeq ($(SYSTEM_NAME), Darwin)
|
|
@$(MAKE) -C isal arch=osx lib
|
|
else
|
|
@$(MAKE) -C isal lib
|
|
endif
|
|
build: isal/isal-l.a
|
|
@godep go build
|
|
|
|
clean:
|
|
@rm -v cover.out
|