diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 000000000..a423a6ddd --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +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 ./... |
