seaweedfs/Makefile

15 lines
211 B
Makefile
Raw 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"
2022-06-23 18:32:15 +00:00
test:
cd weed; go test -tags "elastic gocdk sqlite ydb" -v ./...