works now

This commit is contained in:
2018-11-03 07:41:53 -07:00
parent ff9b67f543
commit 43d43d3748
7 changed files with 261 additions and 162 deletions

View File

@@ -1,4 +1,19 @@
default: run
GOFILES := $(shell find . -type f -name '*.go' -not -name '*_test.go')
default: test
.PHONY: run build test
run:
go run *.go
go run $(GOFILES)
build: steem-block-db
steem-block-db: *.go
go build
test:
go test
clean:
rm steem-block-db