seaweedfs/Makefile
2022-06-23 23:32:15 +05:00

15 lines
211 B
Makefile

BINARY = weed
SOURCE_DIR = .
all: install
install:
cd weed; go install
full_install:
cd weed; go install -tags "elastic gocdk sqlite ydb"
test:
cd weed; go test -tags "elastic gocdk sqlite ydb" -v ./...