Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
steem-block-db/Makefile

19 rader
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