seaweedfs/Makefile

15 lines
222 B
Makefile
Raw Permalink Normal View History

BINARY = weed
SOURCE_DIR = .
all: install
install:
cd weed; go install
full_install:
cd weed; go install -tags "elastic gocdk sqlite ydb tikv"
2022-06-23 18:32:15 +00:00
2022-07-27 14:22:57 +00:00
tests:
cd weed; go test -tags "elastic gocdk sqlite ydb tikv" -v ./...