summaryrefslogtreecommitdiff
path: root/Makefile
blob: 2e779c1edfa87a1b2f2dd18af6839f1d291b4eac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# A simple, generic help repo for forge

all: goimports vet

vet:
	@GO111MODULE=off go vet
	@echo this go library package builds okay

# autofixes your import headers in your golang files
goimports:
	goimports -w *.go

clean:
	rm -f *.pb.go
	-rm -f go.*