ledisdb/Makefile

11 lines
134 B
Makefile

all: build
build:
go install -tags $(GO_BUILD_TAGS) ./...
clean:
go clean -i ./...
test:
go test -tags $(GO_BUILD_TAGS) ./...