steem-block-db/Makefile

20 lines
233 B
Makefile
Raw Permalink Normal View History

2018-11-03 14:41:53 +00:00
GOFILES := $(shell find . -type f -name '*.go' -not -name '*_test.go')
default: test
.PHONY: run build test
2018-10-04 18:41:39 +00:00
run:
2018-11-03 14:41:53 +00:00
go run $(GOFILES)
build: steem-block-db
steem-block-db: *.go
go build
test:
go test
clean:
rm steem-block-db