summaryrefslogtreecommitdiff
path: root/Makefile
blob: 5c8215918c67057afa2bbd1a12ecb2de6375b7a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
all:
	make redomod
	go build
	sudo ./virtigod

goimports:
	goimports -w *.go

redomod:
	rm -f go.*
	GO111MODULE= go mod init
	GO111MODULE= go mod tidy

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