You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
steem-block-db/Makefile

19 lines
233 B

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