331529fc94
* add an Aerospike storage backend * go mod vendor * add Aerospike storage configuration docs * review fixes * bump aerospike client to v3.1.1 * rename the defaultHostname variable * relocate the docs page
11 lines
241 B
Makefile
11 lines
241 B
Makefile
.PHONY: build test glua
|
|
|
|
build:
|
|
./_tools/go-inline *.go && go fmt . && go build
|
|
|
|
glua: *.go pm/*.go cmd/glua/glua.go
|
|
./_tools/go-inline *.go && go fmt . && go build cmd/glua/glua.go
|
|
|
|
test:
|
|
./_tools/go-inline *.go && go fmt . && go test
|