Makefile 222 B

1234567891011121314
  1. BINARY = weed
  2. SOURCE_DIR = .
  3. all: install
  4. install:
  5. cd weed; go install
  6. full_install:
  7. cd weed; go install -tags "elastic gocdk sqlite ydb tikv"
  8. tests:
  9. cd weed; go test -tags "elastic gocdk sqlite ydb tikv" -v ./...