ledisdb/Makefile

17 lines
231 B
Makefile
Raw Normal View History

2014-07-26 05:22:09 +04:00
$(shell ./bootstrap.sh)
$(shell ./build_config.sh build_config.mk ./)
include build_config.mk
2014-07-20 15:03:00 +04:00
all: build
build:
2014-07-25 20:46:03 +04:00
go install -tags $(GO_BUILD_TAGS) ./...
2014-07-20 15:03:00 +04:00
clean:
go clean -i ./...
test:
2014-07-25 20:46:03 +04:00
go test -tags $(GO_BUILD_TAGS) ./...